Types > CustomerPaymentSourceModify
Commerce APITypesCustomerPaymentSourceModify
CustomerPaymentSourceModify

Description

Topic: Customers

Fields

address_city: String

Billing city


address_country: String

Billing address country code


address_line1: String

Billing address line 1


address_line2: String

Billing address line 2


address_state: String

Billing address state code


address_zip: String

Billing zip or postal code


exp_month: Int

Credit card expiration month

Example: 2


exp_year: Int

Credit card expiration year

Example: 2019


name: String

Name of the card holder


Used By

Mutations

customersPaymentSourcesModify

Preview (typescript)

interface CustomerPaymentSourceModify {
address_city?: string
address_country?: string
address_line1?: string
address_line2?: string
address_state?: string
address_zip?: string
exp_month?: number
exp_year?: number
name?: string
}