INPUT_OBJECT

SetAutoRefillSettingsInput

Input for setting auto refill settings.

link GraphQL Schema definition

1input SetAutoRefillSettingsInput {
4
2# The charge instrument information for starting a purchase.
3chargeInstrument: ChargeInstrumentInput!
7
5# The currency this should be charged in.
6currency: Currency!
10
8# The gross amount (of currency) that can be charged on the charge instrument.
9grossAmount: Int!
13
11# Optional id of the auto refill settings that are being modified.
12id: ID
16
14# Indicates if the profile is active.
15isEnabled: Boolean!
19
17# Id of the refill offer used on auto refill.
18offerID: ID!
22
20# The threshold amount a balance must go below to trigger a reload.
21threshold: Int!
23}