Module Values_1.CreateScriptRequestSource

Transforms a directed acyclic graph (DAG) into code.

Sourcetype nonrec t = {
  1. dagNodes : DagNodes.t option;
    (*

    A list of the nodes in the DAG.

    *)
  2. dagEdges : DagEdges.t option;
    (*

    A list of the edges in the DAG.

    *)
  3. language : Language.t option;
    (*

    The programming language of the resulting code from the DAG.

    *)
}
Sourceval make : ?dagNodes:??? -> ?dagEdges:??? -> ?language:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of Values_0.Integer.t | `List of [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `String of CodeGenArgName.t ]) list ] list | `String of CodeGenIdentifier.t ]) list ] list ]) 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