import type { PaymentCardSpec } from './PaymentCardSpec'; /** * @type PaymentMethod: Document representing a payment method. * * @property cards: The sorted array of payment cards (included only when the system payment method is CREDIT_CARD). It is read only. * * @property description: The localized description of the payment method or card. It is read only. * * @property id: The ID of the payment method or card. It is read only. * - **Max Length:** 256 * * @property image: The URL to the image that represents the payment method or card. It is read only. * * @property name: The localized name of the payment method or card. It is read only. * * @property paymentProcessorId: The payment processor ID. It is read only. It is read only. * */ export type PaymentMethod = { cards?: Array; description?: string; id: string; image?: string; name?: string; paymentProcessorId?: string; } & { [key: string]: any; };