Module Values.CustomStructSource

The custom structure represents a complex or higher-order data structure.

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

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

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

    A brief description of the custom structure.

    *)
  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:CustomStructFullyQualifiedNameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CustomStructFullyQualifiedNameString.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