Module Values.UpdateActRequestSource

Updates an existing act's configuration, status, or error information.

Sourcetype nonrec t = {
  1. workflowDefinitionName : WorkflowDefinitionName.t;
    (*

    The name of the workflow definition containing the act.

    *)
  2. workflowRunId : UuidString.t;
    (*

    The unique identifier of the workflow run containing the act.

    *)
  3. sessionId : UuidString.t;
    (*

    The unique identifier of the session containing the act.

    *)
  4. actId : UuidString.t;
    (*

    The unique identifier of the act to update.

    *)
  5. status : ActStatus.t;
    (*

    The new status to set for the act.

    *)
  6. error : ActError.t option;
    (*

    Error information to associate with the act, if applicable.

    *)
}
Sourceval context_ : string
Sourceval make : ?error:??? -> workflowDefinitionName:WorkflowDefinitionName.t -> workflowRunId:UuidString.t -> sessionId:UuidString.t -> actId:UuidString.t -> status:ActStatus.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of WorkflowDefinitionName.t | `Structure of (string * [> `String of ActErrorMessageString.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