Class AfterSalesCoupon
- Assembly
- anybill.POS.Client.Abstractions.dll
A coupon that the customer gets after the checkout.
public class AfterSalesCoupon
- Inheritance
-
AfterSalesCoupon
- Inherited Members
Properties
Code
The code used to redeem the coupon.
public string Code { get; set; }
Property Value
CodeType
The type of the coupon code.
public AfterSalesCouponCodeType CodeType { get; set; }
Property Value
Description
Additional description for the coupon. E.g. how to redeem the coupon or why the coupon was given etc.
public string Description { get; set; }
Property Value
RedeemEndDate
The end date of when the coupon can be redeemed.
public DateTimeOffset? RedeemEndDate { get; set; }
Property Value
RedeemStartDate
The start date of when the coupon can be redeemed.
public DateTimeOffset? RedeemStartDate { get; set; }
Property Value
Title
Title of the coupon.
public string Title { get; set; }