Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Class OrderStoreModel

Data object for storing order data.

Inheritance
System.Object
OrderStoreModel
Namespace: EPiServer.Commerce.Reporting.Order.StoreModels
Assembly: EPiServer.Commerce.Reporting.dll
Version: 14.26.0
Syntax
public class OrderStoreModel : Object

Constructors

OrderStoreModel()

Declaration
public OrderStoreModel()

Properties

Currency

Gets or sets the order currency.

Declaration
public string Currency { get; set; }
Property Value
Type Description
System.String

CustomerId

Gets or sets the customer id.

Declaration
public Guid CustomerId { get; set; }
Property Value
Type Description
System.Guid

CustomerName

Gets or sets the customer name.

Declaration
public string CustomerName { get; set; }
Property Value
Type Description
System.String

HandlingTotal

Gets or sets the handling total value.

Declaration
public Decimal HandlingTotal { get; set; }
Property Value
Type Description
System.Decimal

LineItems

Gets or sets the collection of line items.

Declaration
public IEnumerable<LineItemStoreModel> LineItems { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<LineItemStoreModel>

The line items.

MarketId

Gets or sets market id of the order.

Declaration
public string MarketId { get; set; }
Property Value
Type Description
System.String

OrderCreated

Gets or sets the created date.

Declaration
public DateTime OrderCreated { get; set; }
Property Value
Type Description
System.DateTime

OrderGroupId

Gets or sets the order group id.

Declaration
public int OrderGroupId { get; set; }
Property Value
Type Description
System.Int32

OrderNumber

Gets or sets the order number.

Declaration
public string OrderNumber { get; set; }
Property Value
Type Description
System.String

ShippingTotal

Gets or sets the shipping total value.

Declaration
public Decimal ShippingTotal { get; set; }
Property Value
Type Description
System.Decimal

Site

Gets or sets site of the order.

Declaration
public string Site { get; set; }
Property Value
Type Description
System.String

Status

Gets or sets the order status.

Declaration
public string Status { get; set; }
Property Value
Type Description
System.String

SubTotal

Gets or sets order sub total.

Declaration
public Decimal SubTotal { get; set; }
Property Value
Type Description
System.Decimal

TaxTotal

Gets or sets the tax total value.

Declaration
public Decimal TaxTotal { get; set; }
Property Value
Type Description
System.Decimal

Total

Gets or sets order total.

Declaration
public Decimal Total { get; set; }
Property Value
Type Description
System.Decimal

TotalDiscountAmount

Gets or sets total of all discounts in the order.

Declaration
public Decimal TotalDiscountAmount { get; set; }
Property Value
Type Description
System.Decimal

TotalQuantity

Gets or sets sum of quantities of all items in the order.

Declaration
public Decimal TotalQuantity { get; set; }
Property Value
Type Description
System.Decimal