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