Module Values.AttributeSource

A signal that represents static information about the vehicle, such as engine type or manufacturing date.

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

    The fully qualified name of the attribute. For example, the fully qualified name of an attribute might be Vehicle.Body.Engine.Type.

    *)
  2. dataType : NodeDataType.t;
    (*

    The specified data type of the attribute.

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

    A brief description of the attribute.

    *)
  4. unit : string option;
    (*

    The scientific unit for the attribute.

    *)
  5. allowedValues : ListOfStrings.t option;
    (*

    A list of possible values an attribute can be assigned.

    *)
  6. min : Double.t option;
    (*

    The specified possible minimum value of the attribute.

    *)
  7. max : Double.t option;
    (*

    The specified possible maximum value of the attribute.

    *)
  8. assignedValue : string option;
    (*

    A specified value for the attribute.

    *)
  9. defaultValue : string option;
    (*

    The default value of the attribute.

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

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

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

    A comment in addition to the description.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?unit:??? -> ?allowedValues:??? -> ?min:??? -> ?max:??? -> ?assignedValue:??? -> ?defaultValue:??? -> ?deprecationMessage:??? -> ?comment:??? -> fullyQualifiedName:AttributeFullyQualifiedNameString.t -> dataType:NodeDataType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Enum of string | `List of [> `String of string ] list | `String of AttributeFullyQualifiedNameString.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