Show / Hide Table of Contents

Class OpsActionUpdateMacOrderDetails

The data to update an order in MAC_ORDER bucket.

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

Properties

IpRange

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

The IP Range specified by the customer for this order.

OrderStatus

Declaration
[JsonProperty(PropertyName = "orderStatus")]
[JsonConverter(typeof(StringEnumConverter))]
public MacOrder.OrderStatusEnum? OrderStatus { get; set; }
Property Value
Type Description
MacOrder.OrderStatusEnum?

The new status of the MacOrder.

TimeBillingEnded

Declaration
[JsonProperty(PropertyName = "timeBillingEnded")]
public DateTime? TimeBillingEnded { get; set; }
Property Value
Type Description
DateTime?

The date and time this mac order until which this mac is Active. An RFC3339 formatted datetime string.

TimeBillingStarted

Declaration
[JsonProperty(PropertyName = "timeBillingStarted")]
public DateTime? TimeBillingStarted { get; set; }
Property Value
Type Description
DateTime?

The date and time this mac order is Active from. An RFC3339 formatted datetime string.

In this article
Back to top