Class OrganizationInventorySwapResponseSwap
A Recent Swap Request and their Status
[DataContract]
public class OrganizationInventorySwapResponseSwap
- Inheritance
-
OrganizationInventorySwapResponseSwap
- Inherited Members
Constructors
OrganizationInventorySwapResponseSwap()
public OrganizationInventorySwapResponseSwap()
Properties
AfterAction
An action to perform on the devices.old object after swap is complete. enum = ["release from organization inventory", "remove from network"]
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "afterAction")]
public string AfterAction { get; set; }
Property Value
CompletedAt
An iso8601 timestamp for when the swap completed or failed.
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "completedAt")]
public string CompletedAt { get; set; }
Property Value
CreatedAt
An iso8601 timestamp for the creation of the swap request.
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "createdAt")]
public string CreatedAt { get; set; }
Property Value
Devices
The devices involved in the swap
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "devices")]
public OrganizationInventorySwapResponseSwapDevices Devices { get; set; }
Property Value
Errors
A list of error messages for why a swap failed.
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "errors")]
public List<string> Errors { get; set; }
Property Value
Id
Swap Request ID
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "id")]
public string Id { get; set; }
Property Value
Status
The current status of the swap job.
[DataMember(Name = "status")]
public SwapStatus Status { get; set; }