/**
 * @example
 *     {
 *         defaultCoupon: "Winter",
 *         name: "10%OFF"
 *     }
 */
export interface CreateCouponCollectionRequest {
    /** Default coupons collection name */
    defaultCoupon: string;
    /** Specify an expiration date for the coupon collection in RFC3339 format. Use null to remove the expiration date. */
    expirationDate?: string;
    /** Name of the coupons collection */
    name: string;
    /** Send a notification alert (email) when the remaining coupons count is equal or fall bellow this number. Use null to disable alerts. */
    remainingCouponsAlert?: number;
    /** Send a notification alert (email) when the remaining days until the expiration date are equal or fall bellow this number. Use null to disable alerts. */
    remainingDaysAlert?: number;
}
