/** * @type CustomerPaymentInstrumentUpdateRequestPaymentCard: The payment card expiration information. * * @property expirationMonth: The month when the payment card expires. * * @property expirationYear: The year when the payment card expires. * */ export type CustomerPaymentInstrumentUpdateRequestPaymentCard = { expirationMonth?: number; expirationYear?: number; } & { [key: string]: any; };