OBJECT

PrimeOfferSelfConnection

The connection between the user and their offer entitlement state.

link GraphQL Schema definition

1type PrimeOfferSelfConnection {
2
3# The data (link, text, or claim code) for the entitlement that was created.
4claimData: String!
5
6# Indicates whether the user has the entitlement to the offer.
7hasEntitlement: Boolean!
8
9# The visual status of the offer to the user, UNSEEN, SEEN, CLAIMED, DISMISSED,
10# OVERRIDDEN.
11status: String!
12
13}