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