Show / Hide Table of Contents

Class UpdateTransferApplianceDetails

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

Properties

CustomerShippingAddress

Declaration
[JsonProperty(PropertyName = "customerShippingAddress")]
public ShippingAddress CustomerShippingAddress { get; set; }
Property Value
Type Description
ShippingAddress

ExpectedReturnDate

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

Expected return date from customer for the device, time portion should be zero.

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateTransferApplianceDetails.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
UpdateTransferApplianceDetails.LifecycleStateEnum?

MinimumStorageCapacityInTerabytes

Declaration
[JsonProperty(PropertyName = "minimumStorageCapacityInTerabytes")]
public int? MinimumStorageCapacityInTerabytes { get; set; }
Property Value
Type Description
int?

Minimum storage capacity of the device, in terabytes. Valid options are 50, 95 and 150.

PickupWindowEndTime

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

End time for the window to pickup the device from customer.

PickupWindowStartTime

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

Start time for the window to pickup the device from customer.

In this article
Back to top