Module Values.NodeCountsSource

Information about the number of nodes and node types in a vehicle network.

Sourcetype nonrec t = {
  1. totalNodes : Number.t option;
    (*

    The total number of nodes in a vehicle network.

    *)
  2. totalBranches : Number.t option;
    (*

    The total number of nodes in a vehicle network that represent branches.

    *)
  3. totalSensors : Number.t option;
    (*

    The total number of nodes in a vehicle network that represent sensors.

    *)
  4. totalAttributes : Number.t option;
    (*

    The total number of nodes in a vehicle network that represent attributes.

    *)
  5. totalActuators : Number.t option;
    (*

    The total number of nodes in a vehicle network that represent actuators.

    *)
  6. totalStructs : Number.t option;
    (*

    The total structure for the node.

    *)
  7. totalProperties : Number.t option;
    (*

    The total properties for the node.

    *)
}
Sourceval make : ?totalNodes:??? -> ?totalBranches:??? -> ?totalSensors:??? -> ?totalAttributes:??? -> ?totalActuators:??? -> ?totalStructs:??? -> ?totalProperties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Number.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