Module Values.AssociatedClientDeviceSource

Contains information about a client device that is associated to a core device for cloud discovery.

Sourcetype nonrec t = {
  1. thingName : IoTThingName.t option;
    (*

    The name of the IoT thing that represents the associated client device.

    *)
  2. associationTimestamp : Timestamp.t option;
    (*

    The time that the client device was associated, expressed in ISO 8601 format.

    *)
}
Sourceval make : ?thingName:??? -> ?associationTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IoTThingName.t | `Timestamp of Timestamp.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