import type { CreateOrderPaymentTransaction } from './CreateOrderPaymentTransaction'; /** * @type CreateOrderPaymentInstrument: Document representing a payment instrument. * * @property paymentMethodId: The payment method ID. * - **Max Length:** 256 * * @property paymentTransaction: The payment transaction. * */ export type CreateOrderPaymentInstrument = { paymentMethodId: string; paymentTransaction?: CreateOrderPaymentTransaction; } & { [key: string]: any; };