Class NetworkMoveDetailed
Network Move Detailed.
[DataContract]
public class NetworkMoveDetailed
- Inheritance
-
NetworkMoveDetailed
- Inherited Members
Constructors
NetworkMoveDetailed()
public NetworkMoveDetailed()
Properties
CreatedAt
Timestamp of when the network move initiated
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "createdAt")]
public string CreatedAt { get; set; }
Property Value
Initiator
User who initiated the move
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "intiator")]
public NetworkMoveInitiator Initiator { get; set; }
Property Value
LastUpdatedAt
Timestamp when the network move status last changed
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "lastUpdatedAt")]
public string LastUpdatedAt { get; set; }
Property Value
Network
Network to be moved
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "network")]
public NetworkMoveNetwork Network { get; set; }
Property Value
Organizations
Organizations involved in the network move
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "organizations")]
public NetworkMoveOrganizations Organizations { get; set; }
Property Value
Status
Current status of the network move operation. Possible values are pending, in progress, failed, and completed
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "status")]
public string Status { get; set; }