export type PromotionPercentDiscountScheme = {
    /** 프로모션 할인 유형 */
    type: "PERCENT";
    /** (int32) */
    percent: number;
};
