import type { Status } from './Status'; /** * @type CreateOrderPaymentTransaction: Document representing an order payment transaction. * * @property amount: The payment transaction amount. * * @property authorizationStatus: The authorization status of the payment transaction. * * @property transactionId: The payment service specific transaction ID. * - **Max Length:** 256 * */ export type CreateOrderPaymentTransaction = { amount: number; authorizationStatus?: Status; transactionId: string; } & { [key: string]: any; };