export type PromotionAmountDiscountScheme = {
    /** 프로모션 할인 유형 */
    type: "AMOUNT";
    /** (int64) */
    amount: number;
};
