Module Values.CustomPropertySource

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

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

    The fully qualified name of the custom property. For example, the fully qualified name of a custom property might be ComplexDataTypes.VehicleDataTypes.SVMCamera.FPS.

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

    The data type for the custom property.

    *)
  3. dataEncoding : NodeDataEncoding.t option;
    (*

    Indicates whether the property is binary data.

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

    A brief description of the custom property.

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

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

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

    A comment in addition to the description.

    *)
  7. structFullyQualifiedName : NodePath.t option;
    (*

    The fully qualified name of the struct node for the custom property if the data type of the custom property is Struct or StructArray.

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