Table of Contents

Class LoyaltyPointViewModel

Namespace
Dynamicweb.Ecommerce.Frontend.LoyaltyPoints
Assembly
Dynamicweb.Ecommerce.dll

LoyaltyPointViewModel represents the rendering context used when a loyalty points transaction is rendered.

public class LoyaltyPointViewModel : FillableViewModelBase
Inheritance
LoyaltyPointViewModel
Inherited Members

Properties

Comment

Gets or sets the loyalty points transaction comment.

public string Comment { get; set; }

Property Value

string

ExpirationDate

Gets or sets the loyalty points transaction expiration date.

public DateTime ExpirationDate { get; set; }

Property Value

DateTime

Id

Gets or sets the loyalty points transaction ID.

public int Id { get; set; }

Property Value

int

Order

Gets or sets the loyalty points transaction OrderViewModel.

public OrderViewModel Order { get; set; }

Property Value

OrderViewModel

Points

Gets or sets the amount of given loyalty points for the transaction.

public double Points { get; set; }

Property Value

double

TotalPoints

Gets or sets the total amount of loyalty points.

public double TotalPoints { get; set; }

Property Value

double

TransactionDate

Gets or sets the loyalty points transaction date.

public DateTime TransactionDate { get; set; }

Property Value

DateTime
To top