UNPKG

@portone/server-sdk

Version:

PortOne JavaScript SDK for server-side usage

17 lines (16 loc) 432 B
import type { PlatformAdditionalFeePolicy } from "./../../platform/PlatformAdditionalFeePolicy.js"; /** 추가 수수료 정보 */ export type PlatformOrderTransferAdditionalFee = { /** 추가 수수료 정책 */ policy: PlatformAdditionalFeePolicy; /** * 추가 수수료 금액 * (int64) */ amount: number; /** * 추가 수수료 부가세 금액 * (int64) */ vat: number; };