Module Values_0.StatusReasonSource

Provide additional context about the status of a command execution using a reason code and description.

Sourcetype nonrec t = {
  1. reasonCode : StatusReasonCode.t option;
    (*

    A code that provides additional context for the command execution status.

    *)
  2. reasonDescription : StatusReasonDescription.t option;
    (*

    A literal string for devices to optionally provide additional information about the reason code for a command execution status.

    *)
}
Sourceval make : ?reasonCode:??? -> ?reasonDescription:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of StatusReasonCode.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