@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
15 lines (14 loc) • 559 B
TypeScript
import type { Unrecognized } from "./../../utils/unrecognized.js";
import type { PlatformFixedAmountFee } from "./../platform/PlatformFixedAmountFee.js";
import type { PlatformFixedRateFee } from "./../platform/PlatformFixedRateFee.js";
/** 플랫폼 중개수수료 정보 */
export type PlatformFee =
/** 정액 수수료 */
PlatformFixedAmountFee
/** 정률 수수료 */
| PlatformFixedRateFee | {
readonly type: Unrecognized;
};
export declare function isUnrecognizedPlatformFee(entity: PlatformFee): entity is {
readonly type: Unrecognized;
};