OBJECT

OfferSelfEdge

The authenticated user's relationship with the offer.

link GraphQL Schema definition

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