Module Values.RetainedMessageSummarySource

Information about a single retained message.

Sourcetype nonrec t = {
  1. topic : Topic.t option;
    (*

    The topic name to which the retained message was published.

    *)
  2. payloadSize : PayloadSize.t option;
    (*

    The size of the retained message's payload in bytes.

    *)
  3. qos : Qos.t option;
    (*

    The quality of service (QoS) level used to publish the retained message.

    *)
  4. lastModifiedTime : Timestamp.t option;
    (*

    The Epoch date and time, in milliseconds, when the retained message was stored by IoT.

    *)
}
Sourceval make : ?topic:??? -> ?payloadSize:??? -> ?qos:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Qos.t | `Long of PayloadSize.t | `String of Topic.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