INPUT_OBJECT
CreateTokenizedBankAccountMutationInput
The input object that defines the fields for the createTokenizedBankAccount mutation.
link GraphQL Schema definition
- input CreateTokenizedBankAccountMutationInput {
- # The ID of an Account.
- : Int64Bit!
- # The ID of a BankProcessor.
- : Int64Bit!
- # The profile ID provided by a credit card processing service.
- : String
- # The name on the account.
- : String!
- # The type of bank account this is.
- : BankAccountType!
- # The tokenized value that represents a credit card, provided by a credit card
- # processing service.
- : String!
- # A partial account number that can be used for identification.
- : String!
- # Whether or not this payment method is enabled for automatic payments.
- : Boolean!
- # The bank routing number.
- : Numeric
- # The billing address for the payment method.
- : CreateAddressMutationInput
- # A note about this entity.
- : NoteMutationInput
- }