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.

Constructors

Link copied to clipboard
constructor(customerId: String, cardNumber: String, expirationMonth: Int, expirationYear: Int, cvc: String)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val cvc: String
Link copied to clipboard
Link copied to clipboard