Class OrderSearchFilter
NOTE: This is a pre-release API that is UNSTABLE and might not satisfy the compatibility requirements as denoted by its associated normal version.
Filter class used to filter which orders to retrieve.
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.Order
Assembly: Mediachase.Commerce.dll
Version: 12.17.2Syntax
public class OrderSearchFilter
Constructors
OrderSearchFilter()
Declaration
public OrderSearchFilter()
Properties
CreatedFrom
Specifies the time that returned orders were created after.
Declaration
public DateTime CreatedFrom { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
CreatedTo
Specifies the time that returned orders were created before.
Declaration
public DateTime CreatedTo { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
MarketId
Specified that only orders created in specified market should be returned.
Declaration
public string MarketId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ModifiedFrom
Specifies the time that returned orders were modified after.
Declaration
public DateTime ModifiedFrom { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
ModifiedTo
Specifies the time that returned orders were modified before.
Declaration
public DateTime ModifiedTo { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
RecordsToRetrieve
Gets or sets the number of records to retrieve.
Declaration
public int RecordsToRetrieve { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
StartingIndex
Gets or sets the starting index.
Declaration
public int StartingIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Statuses
Specified that only orders having statuses should be returned.
Declaration
public IEnumerable<OrderStatus> Statuses { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<OrderStatus> |