Values.BasicDeviceObjectSourceRepresents a device where a user has logged into Wickr, containing information about the device's type, status, and login history.
type nonrec t = {appId : GenericString.t option;The unique application ID for the Wickr app on this device.
*)created : GenericString.t option;The timestamp when the device first appeared in the Wickr database.
*)lastLogin : GenericString.t option;The timestamp when the device last successfully logged into Wickr. This is also used to determine SSO idle time.
*)statusText : GenericString.t option;The current status of the device, either 'Active' or 'Reset' depending on whether the device is currently active or has been marked for reset.
*)suspend : Boolean.t option;Indicates whether the device is suspended.
*)type_ : GenericString.t option;The operating system of the device (e.g., 'MacOSX', 'Windows', 'iOS', 'Android').
*)}val to_value :
t ->
[> `Structure of
(string * [> `Boolean of Boolean.t | `String of GenericString.t ]) list ]