import type { OrderPaymentCardRequest } from './OrderPaymentCardRequest'; /** * @type BasketPaymentInstrumentRequest: Document representing a basket payment instrument request. * * @property amount: The payment transaction amount. * * @property bankRoutingNumber: The bank routing number. * - **Max Length:** 256 * * @property giftCertificateCode: The gift certificate code. * - **Max Length:** 256 * * @property paymentCard: The payment card. * * @property paymentMethodId: The payment method ID. * - **Max Length:** 256 * */ export type BasketPaymentInstrumentRequest = { amount?: number; bankRoutingNumber?: string; giftCertificateCode?: string; paymentCard?: OrderPaymentCardRequest; paymentMethodId?: string; } & { [key: string]: any; };