CustomerCoupon
Customer coupon CustomerCoupon
export interface CustomerCoupon {
'allProductsApplicable'?: boolean;
'couponId'?: string;
'description'?: string;
'endDate'?: string;
'name'?: string;
'notificationOn'?: boolean;
'startDate'?: string;
'status'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
allProductsApplicable | Optional | boolean | Indicates whether the coupon is applicable for all products {boolean} CustomerCoupon |
couponId | Optional | string | Coupon identifier {string} CustomerCoupon |
description | Optional | string | Description of the coupon {string} CustomerCoupon |
endDate | Optional | string | End date of the coupon {string} CustomerCoupon |
name | Optional | string | Name of the coupon {string} CustomerCoupon |
notificationOn | Optional | boolean | Indicates if notification is enabled or disabled {boolean} CustomerCoupon |
startDate | Optional | string | Start date of the coupon {string} CustomerCoupon |
status | Optional | string | Status of the coupon {string} CustomerCoupon |