OBJECT

AutoRefill

Contains all auto refill profiles, will have auto refill metadata in the future.

link GraphQL Schema definition

1type AutoRefill {
2
3# Lists actions to execute during an auto refill setup session.
4actions(paymentProvider: PaymentProvider!): [CheckoutAction!]!
5
6# The list of auto refill profiles.
7profiles: [AutoRefillProfile!]!
8
9# A list of active xsolla payment methods that a user has available. This field is
10# intended to be replaced by the User.PaymentMethods query.
11xsollaPaymentMethods: [PaymentMethod!]
12
13}