Module Values.FlowTemplateDescriptionSource

An object that contains a workflow's definition and summary information.

Sourcetype nonrec t = {
  1. summary : FlowTemplateSummary.t option;
    (*

    An object that contains summary information about a workflow.

    *)
  2. definition : DefinitionDocument.t option;
    (*

    A workflow's definition document.

    *)
  3. validatedNamespaceVersion : Version.t option;
    (*

    The version of the user's namespace against which the workflow was validated. Use this value in your system instance.

    *)
}
Sourceval make : ?summary:??? -> ?definition:??? -> ?validatedNamespaceVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Version.t | `Structure of (string * [> `Enum of string | `Long of Version.t | `String of Urn.t | `Timestamp of Timestamp.t ]) 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