Alokai

CustomerCoupon

Customer coupon CustomerCoupon

export interface CustomerCoupon {
	'allProductsApplicable'?: boolean;
	'couponId'?: string;
	'description'?: string;
	'endDate'?: string;
	'name'?: string;
	'notificationOn'?: boolean;
	'startDate'?: string;
	'status'?: string;
}

Properties

NameRequiredTypeDescription
allProductsApplicableOptionalbooleanIndicates whether the coupon is applicable for all products {boolean} CustomerCoupon
couponIdOptionalstringCoupon identifier {string} CustomerCoupon
descriptionOptionalstringDescription of the coupon {string} CustomerCoupon
endDateOptionalstringEnd date of the coupon {string} CustomerCoupon
nameOptionalstringName of the coupon {string} CustomerCoupon
notificationOnOptionalbooleanIndicates if notification is enabled or disabled {boolean} CustomerCoupon
startDateOptionalstringStart date of the coupon {string} CustomerCoupon
statusOptionalstringStatus of the coupon {string} CustomerCoupon

On this page