66[ DataContract ]
77public class OrganizationFirmwareUpgradesByDeviceItem
88{
9+ /// <summary>
10+ /// The time the device checkin finished
11+ /// </summary>
12+ [ ApiAccess ( ApiAccess . Read ) ]
13+ [ DataMember ( Name = "checkinFinishedAt" ) ]
14+ public DateTime CheckinFinishedAt { get ; set ; }
15+
16+ /// <summary>
17+ /// The time the device checkin started
18+ /// </summary>
19+ [ ApiAccess ( ApiAccess . Read ) ]
20+ [ DataMember ( Name = "checkinStartedAt" ) ]
21+ public DateTime CheckinStartedAt { get ; set ; }
22+
23+ /// <summary>
24+ /// The detailed status of the device upgrade
25+ /// </summary>
26+ [ ApiAccess ( ApiAccess . Read ) ]
27+ [ DataMember ( Name = "detailedStatus" ) ]
28+ public string DetailedStatus { get ; set ; } = string . Empty ;
29+
930 /// <summary>
1031 /// Status of the device upgrade
1132 /// </summary>
1233 [ ApiAccess ( ApiAccess . Read ) ]
1334 [ DataMember ( Name = "deviceStatus" ) ]
1435 public string DeviceStatus { get ; set ; } = string . Empty ;
1536
37+ /// <summary>
38+ /// The time the device upgrade download finished
39+ /// </summary>
40+ [ ApiAccess ( ApiAccess . Read ) ]
41+ [ DataMember ( Name = "downloadFinishedAt" ) ]
42+ public DateTime DownloadFinishedAt { get ; set ; }
43+
44+ /// <summary>
45+ /// The time the device upgrade download started
46+ /// </summary>
47+ [ ApiAccess ( ApiAccess . Read ) ]
48+ [ DataMember ( Name = "downloadStartedAt" ) ]
49+ public DateTime DownloadStartedAt { get ; set ; }
50+
51+ /// <summary>
52+ /// The status of the device upgrade download
53+ /// </summary>
54+ [ ApiAccess ( ApiAccess . Read ) ]
55+ [ DataMember ( Name = "downloadStatus" ) ]
56+ public string DownloadStatus { get ; set ; } = string . Empty ;
57+
58+ /// <summary>
59+ /// The time the device upgrade install finished
60+ /// </summary>
61+ [ ApiAccess ( ApiAccess . Read ) ]
62+ [ DataMember ( Name = "installFinishedAt" ) ]
63+ public DateTime InstallFinishedAt { get ; set ; }
64+
65+ /// <summary>
66+ /// The time the device upgrade install started
67+ /// </summary>
68+ [ ApiAccess ( ApiAccess . Read ) ]
69+ [ DataMember ( Name = "installStartedAt" ) ]
70+ public DateTime InstallStartedAt { get ; set ; }
71+
72+ /// <summary>
73+ /// The status of the device upgrade install
74+ /// </summary>
75+ [ ApiAccess ( ApiAccess . Read ) ]
76+ [ DataMember ( Name = "installStatus" ) ]
77+ public string InstallStatus { get ; set ; } = string . Empty ;
78+
1679 /// <summary>
1780 /// Name assigned to the device
1881 /// </summary>
@@ -27,6 +90,27 @@ public class OrganizationFirmwareUpgradesByDeviceItem
2790 [ DataMember ( Name = "serial" ) ]
2891 public string Serial { get ; set ; } = string . Empty ;
2992
93+ /// <summary>
94+ /// The time the device upgrade verification finished
95+ /// </summary>
96+ [ ApiAccess ( ApiAccess . Read ) ]
97+ [ DataMember ( Name = "verifyFinishedAt" ) ]
98+ public DateTime VerifyFinishedAt { get ; set ; }
99+
100+ /// <summary>
101+ /// The time the device upgrade verification started
102+ /// </summary>
103+ [ ApiAccess ( ApiAccess . Read ) ]
104+ [ DataMember ( Name = "verifyStartedAt" ) ]
105+ public DateTime VerifyStartedAt { get ; set ; }
106+
107+ /// <summary>
108+ /// The status of the device upgrade verification
109+ /// </summary>
110+ [ ApiAccess ( ApiAccess . Read ) ]
111+ [ DataMember ( Name = "verifyStatus" ) ]
112+ public string VerifyStatus { get ; set ; } = string . Empty ;
113+
30114 /// <summary>
31115 /// The devices upgrade details and status
32116 /// </summary>
0 commit comments