INPUT_OBJECT
CreateCreditCardMutationInput
The input object that defines the fields for the createCreditCard mutation.
link GraphQL Schema definition
- input CreateCreditCardMutationInput {
- # The ID of an Account.
- : Int64Bit!
- # The name on the credit card.
- : String!
- # The credit card number.
- : Numeric!
- # The CVV2 number (also called CVV, CSV, and CID, depending on the card issuer.)
- : Numeric
- # The month the credit card expires.
- : Int!
- # The year the credit card expires.
- : Int!
- # 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
- }