OBJECT
OfferSelfEdge
The authenticated user's relationship with the offer.
link GraphQL Schema definition
1 type OfferSelfEdge { 2 3 # Returns any fraud-related checkout actions that the client must invoke. 4 (: Int!, : PaymentSession): [CheckoutAction!] 5 6 # Configs that initiate the user's checkout flow for this Offer. 7 : CheckoutConfiguration 8 9 # Provides a list of eligible payment methods that the user can select for this 10 # offer. 11 : [EligiblePaymentMethod!] 12 13 }