Module Values.BasicDeviceObjectSource

Represents a device where a user has logged into Wickr, containing information about the device's type, status, and login history.

Sourcetype nonrec t = {
  1. appId : GenericString.t option;
    (*

    The unique application ID for the Wickr app on this device.

    *)
  2. created : GenericString.t option;
    (*

    The timestamp when the device first appeared in the Wickr database.

    *)
  3. lastLogin : GenericString.t option;
    (*

    The timestamp when the device last successfully logged into Wickr. This is also used to determine SSO idle time.

    *)
  4. 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.

    *)
  5. suspend : Boolean.t option;
    (*

    Indicates whether the device is suspended.

    *)
  6. type_ : GenericString.t option;
    (*

    The operating system of the device (e.g., 'MacOSX', 'Windows', 'iOS', 'Android').

    *)
}
Sourceval make : ?appId:??? -> ?created:??? -> ?lastLogin:??? -> ?statusText:??? -> ?suspend:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of GenericString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t