OBJECT

AutoRefillProfile

Auto Refill profile information.

link GraphQL Schema definition

1type AutoRefillProfile {
2
3# The charge instrument information for starting a purchase.
4chargeInstrument: ChargeInstrument
5
6# Unique ID assigned to this profile.
7id: ID!
8
9# Indicates if this profile is active.
10isEnabled: Boolean!
11
12# The offerID that maps to the ability to purchase the intended product.
13offerID: ID
14
15# The threshold amount a balance must go below to trigger a reload.
16threshold: Int!
17
18}