Module Values.InvalidSignalSource

A reason that a signal isn't valid.

Sourcetype nonrec t = {
  1. name : FullyQualifiedName.t option;
    (*

    The name of the signal that isn't valid.

    *)
  2. reason : string option;
    (*

    A message about why the signal isn't valid.

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