Class AfterSalesCoupon
A coupon that the customer gets after the checkout.
Inheritance
System.Object
AfterSalesCoupon
Namespace: anybill.POS.Client.Models.Bill.Misc.Extension.AfterSalesCoupon
Assembly: anybill.POS.Client.Abstractions.dll
Syntax
public class AfterSalesCoupon
Properties
Code
The code used to redeem the coupon.
Declaration
public string Code { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CodeType
The type of the coupon code.
Declaration
public AfterSalesCouponCodeType CodeType { get; set; }
Property Value
Type | Description |
---|---|
AfterSalesCouponCodeType |
Description
Additional description for the coupon. E.g. how to redeem the coupon or why the coupon was given etc.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RedeemEndDate
The end date of when the coupon can be redeemed.
Declaration
public DateTimeOffset? RedeemEndDate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTimeOffset> |
RedeemStartDate
The start date of when the coupon can be redeemed.
Declaration
public DateTimeOffset? RedeemStartDate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTimeOffset> |
Title
Title of the coupon.
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |