@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
14 lines (13 loc) • 692 B
TypeScript
import type { Unrecognized } from "./../../../utils/unrecognized.js";
import type { PromotionRecoverOptionNoRecover } from "./../../payment/promotion/PromotionRecoverOptionNoRecover.js";
import type { PromotionRecoverOptionRecover } from "./../../payment/promotion/PromotionRecoverOptionRecover.js";
export type PromotionRecoverOption =
/** 결제 취소 시 프로모션 예산 미복구 */
PromotionRecoverOptionNoRecover
/** 결제 취소 시 프로모션 예산 복구 */
| PromotionRecoverOptionRecover | {
readonly type: Unrecognized;
};
export declare function isUnrecognizedPromotionRecoverOption(entity: PromotionRecoverOption): entity is {
readonly type: Unrecognized;
};