INPUT_OBJECT
CreateBankAccountMutationInput
The input object that defines the fields for the createBankAccount mutation.
link GraphQL Schema definition
- input CreateBankAccountMutationInput {
- # The ID of an Account.
- : Int64Bit!
- # The name on the account.
- : String!
- # The type of bank account this is.
- : BankAccountType!
- # The bank account number.
- : Numeric!
- # The bank routing number.
- : Numeric!
- # Whether or not this payment method is enabled for automatic payments.
- : Boolean!
- # The billing address for the payment method.
- : CreateAddressMutationInput!
- # A note about this entity.
- : NoteMutationInput
- }