Module Values.NodeSource

A general abstraction of a signal. A node can be specified as an actuator, attribute, branch, or sensor.

Sourcetype nonrec t = {
  1. branch : Branch.t option;
    (*

    Information about a node specified as a branch. A group of signals that are defined in a hierarchical structure.

    *)
  2. sensor : Sensor.t option;
  3. actuator : Actuator.t option;
    (*

    Information about a node specified as an actuator. An actuator is a digital representation of a vehicle device.

    *)
  4. attribute : Attribute.t option;
    (*

    Information about a node specified as an attribute. An attribute represents static information about a vehicle.

    *)
  5. struct_ : CustomStruct.t option;
    (*

    Represents a complex or higher-order data structure.

    *)
  6. property : CustomProperty.t option;
    (*

    Represents a member of the complex data structure. The datatype of the property can be either primitive or another struct.

    *)
}
Sourceval make : ?branch:??? -> ?sensor:??? -> ?actuator:??? -> ?attribute:??? -> ?struct_:??? -> ?property:??? -> unit -> t
Sourceval to_value : t -> [> `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 ]
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