Module Values.GetWorkflowRunRequestSource

Returns information about a specified run of a workflow.

Sourcetype nonrec t = {
  1. spaceName : NameString.t;
    (*

    The name of the space.

    *)
  2. id : Uuid.t;
    (*

    The ID of the workflow run. To retrieve a list of workflow run IDs, use ListWorkflowRuns.

    *)
  3. projectName : GetWorkflowRunRequestProjectNameString.t;
    (*

    The name of the project in the space.

    *)
}
Sourceval context_ : string
Sourceval make : spaceName:NameString.t -> id:Uuid.t -> projectName:GetWorkflowRunRequestProjectNameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NameString.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