@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
15 lines (14 loc) • 751 B
TypeScript
import type { Unrecognized } from "./../../../utils/unrecognized.js";
import type { PlatformDepositAccountTransfer } from "./../../platform/accountTransfer/PlatformDepositAccountTransfer.js";
import type { PlatformWithdrawalAccountTransfer } from "./../../platform/accountTransfer/PlatformWithdrawalAccountTransfer.js";
/**
* 계좌 이체
*
* 송금 대행을 통해 일어난 정산 금액 지급, 인출 목적의 계좌 이체 결과 정보입니다.
*/
export type PlatformAccountTransfer = PlatformDepositAccountTransfer | PlatformWithdrawalAccountTransfer | {
readonly type: Unrecognized;
};
export declare function isUnrecognizedPlatformAccountTransfer(entity: PlatformAccountTransfer): entity is {
readonly type: Unrecognized;
};