/** * @type CustomerPaymentMethodReference: * * @property type: The payment method type. It is read only. * * @property id: The gateway ID for the payment method. It is read only. * - **Max Length:** 256 * * @property last4: The last four digits of the payment method number. It is read only. * - **Max Length:** 4 * * @property accountId: Account identifier * - **Min Length:** 1 * - **Max Length:** 100 * */ export type CustomerPaymentMethodReference = { type?: CustomerPaymentMethodReferenceTypeEnum; id?: string; last4?: string; accountId?: string; } & { [key: string]: any; }; export type CustomerPaymentMethodReferenceTypeEnum = 'card' | 'sepa_debit';