Share via


Order Constructors

Definition

Overloads

Order()

Initializes a new instance of the Order class.

Order(ContactDetails, Address, String, String, String, OrderStatus, IList<OrderStatus>, String, IList<TrackingInfo>, IList<TrackingInfo>)

Initializes a new instance of the Order class.

Order()

Initializes a new instance of the Order class.

public Order ();
Public Sub New ()

Applies to

Order(ContactDetails, Address, String, String, String, OrderStatus, IList<OrderStatus>, String, IList<TrackingInfo>, IList<TrackingInfo>)

Initializes a new instance of the Order class.

public Order (Microsoft.Azure.Management.EdgeGateway.Models.ContactDetails contactInformation, Microsoft.Azure.Management.EdgeGateway.Models.Address shippingAddress, string id = default, string name = default, string type = default, Microsoft.Azure.Management.EdgeGateway.Models.OrderStatus currentStatus = default, System.Collections.Generic.IList<Microsoft.Azure.Management.EdgeGateway.Models.OrderStatus> orderHistory = default, string serialNumber = default, System.Collections.Generic.IList<Microsoft.Azure.Management.EdgeGateway.Models.TrackingInfo> deliveryTrackingInfo = default, System.Collections.Generic.IList<Microsoft.Azure.Management.EdgeGateway.Models.TrackingInfo> returnTrackingInfo = default);
new Microsoft.Azure.Management.EdgeGateway.Models.Order : Microsoft.Azure.Management.EdgeGateway.Models.ContactDetails * Microsoft.Azure.Management.EdgeGateway.Models.Address * string * string * string * Microsoft.Azure.Management.EdgeGateway.Models.OrderStatus * System.Collections.Generic.IList<Microsoft.Azure.Management.EdgeGateway.Models.OrderStatus> * string * System.Collections.Generic.IList<Microsoft.Azure.Management.EdgeGateway.Models.TrackingInfo> * System.Collections.Generic.IList<Microsoft.Azure.Management.EdgeGateway.Models.TrackingInfo> -> Microsoft.Azure.Management.EdgeGateway.Models.Order
Public Sub New (contactInformation As ContactDetails, shippingAddress As Address, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional currentStatus As OrderStatus = Nothing, Optional orderHistory As IList(Of OrderStatus) = Nothing, Optional serialNumber As String = Nothing, Optional deliveryTrackingInfo As IList(Of TrackingInfo) = Nothing, Optional returnTrackingInfo As IList(Of TrackingInfo) = Nothing)

Parameters

contactInformation
ContactDetails

The contact details.

shippingAddress
Address

The shipping address.

id
String

The path ID that uniquely identifies the object.

name
String

The object name.

type
String

The hierarchical type of the object.

currentStatus
OrderStatus

Current status of the order.

orderHistory
IList<OrderStatus>

List of status changes in the order.

serialNumber
String

Serial number of the device.

deliveryTrackingInfo
IList<TrackingInfo>

Tracking information for the package delivered to the customer whether it has an original or a replacement device.

returnTrackingInfo
IList<TrackingInfo>

Tracking information for the package returned from the customer whether it has an original or a replacement device.

Applies to