CardPromotion: {
    type: "CARD";
    id: string;
    storeId: string;
    name: string;
    discountType: PromotionDiscount;
    totalBudget: number;
    minPaymentAmount?: number;
    maxDiscountAmount?: number;
    spentAmount: number;
    currency: Currency;
    startAt: string;
    endAt: string;
    terminatedAt?: string;
    cardCompany: PromotionCardCompany;
    status: PromotionStatus;
    createdAt: string;
}

카드 프로모션

Type declaration

  • type: "CARD"

    프로모션 유형

  • id: string

    프로모션 아이디

  • storeId: string

    상점 아이디

  • name: string

    프로모션 이름

  • discountType: PromotionDiscount

    할인 유형

  • totalBudget: number

    총 예산 (int64)

  • OptionalminPaymentAmount?: number

    최소 결제 금액 (int64)

  • OptionalmaxDiscountAmount?: number

    최대 할인 금액 (int64)

  • spentAmount: number

    소진 금액 (int64)

  • currency: Currency

    금액 화폐

  • startAt: string

    프로모션 시작 시각 (RFC 3339 date-time)

  • endAt: string

    프로모션 종료 시각 (RFC 3339 date-time)

  • OptionalterminatedAt?: string

    프로모션 중단 시각 (RFC 3339 date-time)

  • cardCompany: PromotionCardCompany

    프로모션 카드사

  • status: PromotionStatus

    프로모션 상태

  • createdAt: string

    프로모션 생성 시각 (RFC 3339 date-time)