Module Values_1.CodeGenNodeArgSource

An argument or property of a node.

Sourcetype nonrec t = {
  1. name : CodeGenArgName.t;
    (*

    The name of the argument or property.

    *)
  2. value : CodeGenArgValue.t;
    (*

    The value of the argument or property.

    *)
  3. param : Values_0.Boolean.t option;
    (*

    True if the value is used as a parameter.

    *)
}
Sourceval context_ : string
Sourceval make : ?param:??? -> name:CodeGenArgName.t -> value:CodeGenArgValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `String of CodeGenArgName.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