Module Values.InvalidNodeExceptionSource

The specified node type doesn't match the expected node type for a node. You can specify the node type as branch, sensor, actuator, or attribute.

Sourcetype nonrec t = {
  1. invalidNodes : Nodes.t option;
    (*

    The specified node type isn't valid.

    *)
  2. reason : string option;
    (*

    The reason the node validation failed.

    *)
  3. message : string option;
}
Sourceval make : ?invalidNodes:??? -> ?reason:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Structure of (string * [> `Double of Double.t | `Enum of string | `List of [> `String of string ] list | `String of BranchFullyQualifiedNameString.t ]) list ]) list ] list | `String of string ]) 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