@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
10 lines (9 loc) • 318 B
TypeScript
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;
};