Share via


OrderStatus Constructors

Definition

Overloads

OrderStatus()

Initializes a new instance of the OrderStatus class.

OrderStatus(String, Nullable<DateTime>, String)

Initializes a new instance of the OrderStatus class.

OrderStatus()

Initializes a new instance of the OrderStatus class.

public OrderStatus ();
Public Sub New ()

Applies to

OrderStatus(String, Nullable<DateTime>, String)

Initializes a new instance of the OrderStatus class.

public OrderStatus (string status, DateTime? updateDateTime = default, string comments = default);
new Microsoft.Azure.Management.EdgeGateway.Models.OrderStatus : string * Nullable<DateTime> * string -> Microsoft.Azure.Management.EdgeGateway.Models.OrderStatus
Public Sub New (status As String, Optional updateDateTime As Nullable(Of DateTime) = Nothing, Optional comments As String = Nothing)

Parameters

status
String

Status of the order as per the allowed status types. Possible values include: 'Untracked', 'AwaitingFulfilment', 'AwaitingPreparation', 'AwaitingShipment', 'Shipped', 'Arriving', 'Delivered', 'ReplacementRequested', 'LostDevice', 'Declined', 'ReturnInitiated', 'AwaitingReturnShipment', 'ShippedBack', 'CollectedAtMicrosoft'

updateDateTime
Nullable<DateTime>

Time of status update.

comments
String

Comments related to this status change.

Applies to