Module Values.BranchSource

A group of signals that are defined in a hierarchical structure.

Sourcetype nonrec t = {
  1. fullyQualifiedName : BranchFullyQualifiedNameString.t;
    (*

    The fully qualified name of the branch. For example, the fully qualified name of a branch might be Vehicle.Body.Engine.

    *)
  2. description : Description.t option;
    (*

    A brief description of the branch.

    *)
  3. deprecationMessage : Message.t option;
    (*

    The deprecation message for the node or the branch that was moved or deleted.

    *)
  4. comment : Message.t option;
    (*

    A comment in addition to the description.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?deprecationMessage:??? -> ?comment:??? -> fullyQualifiedName:BranchFullyQualifiedNameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BranchFullyQualifiedNameString.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