@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
15 lines (14 loc) • 714 B
TypeScript
import type { Unrecognized } from "./../../../utils/unrecognized.js";
import type { FailedPgBillingKeyIssueResponse } from "./../../payment/billingKey/FailedPgBillingKeyIssueResponse.js";
import type { IssuedPgBillingKeyIssueResponse } from "./../../payment/billingKey/IssuedPgBillingKeyIssueResponse.js";
/** 채널 별 빌링키 발급 응답 */
export type PgBillingKeyIssueResponse =
/** 발급 실패 채널 응답 */
FailedPgBillingKeyIssueResponse
/** 발급 성공 채널 응답 */
| IssuedPgBillingKeyIssueResponse | {
readonly type: Unrecognized;
};
export declare function isUnrecognizedPgBillingKeyIssueResponse(entity: PgBillingKeyIssueResponse): entity is {
readonly type: Unrecognized;
};