Class OrderStoreModel

Data object for storing order data.

Inheritance
System.Object
OrderStoreModel
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Commerce.Reporting.Order.StoreModels
Assembly: EPiServer.Commerce.Reporting.dll
Version: 13.30.0
Syntax
public class OrderStoreModel

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

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