Class LoyaltyCardPaymentDetails
Additional optional payment details about the loyalty card tender type.
Namespace: anybill.POS.Client.Models.Bill.Data.PaymentType.Extension.PaymentDetails
Assembly: anybill.POS.Client.Abstractions.dll
Syntax
public class LoyaltyCardPaymentDetails : PaymentDetails
Properties
AccountNumber
The identifier used in the transaction. E.g. a card number
Declaration
public string AccountNumber { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
The name for the loyalty system.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PointsGained
The points gained in this transaction.
Declaration
public double? PointsGained { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
PointsLeft
The points left in the loyalty system.
Declaration
public double? PointsLeft { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
PointsUsed
The points redeemed for this transaction.
Declaration
public double? PointsUsed { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |