ENUM

JourneyOfferStatus

Possible values for the status of a Journey Offer

link GraphQL Schema definition

1enum JourneyOfferStatus {
2
3# Offer can be claimed now
4AVAILABLE
5
6# Offer has been claimed by the user
7CLAIMED
8
9# Offer has expired and is no longer claimable
10EXPIRED
11
12# Offer is not yet available
13FUTURE
14}