Module Values_0.MqttContextSource

Specifies the MQTT context to use for the test authorizer request

Sourcetype nonrec t = {
  1. username : MqttUsername.t option;
    (*

    The value of the username key in an MQTT authorization request.

    *)
  2. password : MqttPassword.t option;
    (*

    The value of the password key in an MQTT authorization request.

    *)
  3. clientId : MqttClientId.t option;
    (*

    The value of the clientId key in an MQTT authorization request.

    *)
}
Sourceval make : ?username:??? -> ?password:??? -> ?clientId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of MqttPassword.t | `String of MqttUsername.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