import type { Currency } from "./../../common/Currency.js"; import type { PaymentMethodType } from "./../../common/PaymentMethodType.js"; export type PlatformTransferSummaryExternalPayment = { type: "EXTERNAL"; id: string; orderName?: string; currency: Currency; methodType?: PaymentMethodType; };