Show / Hide Table of Contents

Class Order

Order details.

Inheritance
object
Order
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.TenantmanagercontrolplaneService.Models
Assembly: OCI.DotNetSDK.Tenantmanagercontrolplane.dll
Syntax
public class Order

Properties

AdminEmail

Declaration
[Required(ErrorMessage = "AdminEmail is required.")]
[JsonProperty(PropertyName = "adminEmail")]
public string AdminEmail { get; set; }
Property Value
Type Description
string

Email address of the administrator who owns the subscription.

Remarks

Required

DataCenterRegion

Declaration
[JsonProperty(PropertyName = "dataCenterRegion")]
public string DataCenterRegion { get; set; }
Property Value
Type Description
string

Order's data center region.

OrderNumber

Declaration
[Required(ErrorMessage = "OrderNumber is required.")]
[JsonProperty(PropertyName = "orderNumber")]
public string OrderNumber { get; set; }
Property Value
Type Description
string

Immutable and unique order number holding customer subscription information.

Remarks

Required

OrderState

Declaration
[Required(ErrorMessage = "OrderState is required.")]
[JsonProperty(PropertyName = "orderState")]
public string OrderState { get; set; }
Property Value
Type Description
string

State of the order.

Remarks

Required

Subscriptions

Declaration
[Required(ErrorMessage = "Subscriptions is required.")]
[JsonProperty(PropertyName = "subscriptions")]
public List<SubscriptionInfo> Subscriptions { get; set; }
Property Value
Type Description
List<SubscriptionInfo>

Array of subscriptions associated with the order.

Remarks

Required

In this article
Back to top