UNPKG

@portone/server-sdk

Version:

PortOne JavaScript SDK for server-side usage

14 lines (13 loc) 627 B
import type { Unrecognized } from "./../../../utils/unrecognized.js"; import type { PromotionAmountDiscountScheme } from "./../../payment/promotion/PromotionAmountDiscountScheme.js"; import type { PromotionPercentDiscountScheme } from "./../../payment/promotion/PromotionPercentDiscountScheme.js"; export type PromotionDiscountScheme = /** 정액 할인 */ PromotionAmountDiscountScheme /** 정률 할인 */ | PromotionPercentDiscountScheme | { readonly type: Unrecognized; }; export declare function isUnrecognizedPromotionDiscountScheme(entity: PromotionDiscountScheme): entity is { readonly type: Unrecognized; };