AddPaymentMethodRequest
data class AddPaymentMethodRequest(val customerId: String, val cardNumber: String, val expirationMonth: Int, val expirationYear: Int, val cvc: String)
Request to add a PaymentMethod to a Customer's collection.
Parameters
customerId
Unique identifier for the customer.
cardNumber
The number for the associated card
expirationMonth
Expiry month should be in one or two digit form: M or MM.
expirationYear
Expiry year should be in four-digit form: YYYY.
cvc
The Card Verification Code (CVC) for the card.