@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
12 lines (11 loc) • 437 B
TypeScript
import type { PlatformCancellableAmountType } from "./../../platform/transfer/PlatformCancellableAmountType.js";
/** 취소 가능한 금액이 초과한 경우 */
export type PlatformCancellableAmountExceededError = {
type: "PLATFORM_CANCELLABLE_AMOUNT_EXCEEDED";
/** (int64) */
cancellableAmount: number;
/** (int64) */
requestAmount: number;
amountType: PlatformCancellableAmountType;
message?: string;
};