import type { CustomerPaymentInstrumentUpdateRequestPaymentCard } from './CustomerPaymentInstrumentUpdateRequestPaymentCard'; /** * @type CustomerPaymentInstrumentUpdateRequest: Document representing a customer payment instrument update request. Only allows updating the default flag and card expiration date. * * @property default: The default payment instrument. * * @property paymentCard: * */ export type CustomerPaymentInstrumentUpdateRequest = { default?: boolean; paymentCard?: CustomerPaymentInstrumentUpdateRequestPaymentCard; } & { [key: string]: any; };