ENUM

OfferStatus

Enum indicating the visual status of the offer to the user.

link GraphQL Schema definition

1enum OfferStatus {
2
3# The user has not seen this offer card on the Crown.
4UNSEEN
5
6# The user has seen this offer card on the Crown.
7SEEN
8
9# The user has claimed this offer.
10CLAIMED
11
12# The user has dismissed this offer card from the Crown and can no longer see it.
13DISMISSED
14
15# A previous SEEN or DISMISSED status has been overridden to allow the offer card
16# to be visible on the Crown.
17OVERRIDDEN
18
19# The user's offer status is in a errored state.
20ERROR
21}