Values.UpdateActRequestSourceUpdates an existing act's configuration, status, or error information.
type nonrec t = {workflowDefinitionName : WorkflowDefinitionName.t;The name of the workflow definition containing the act.
*)workflowRunId : UuidString.t;The unique identifier of the workflow run containing the act.
*)sessionId : UuidString.t;The unique identifier of the session containing the act.
*)actId : UuidString.t;The unique identifier of the act to update.
*)status : ActStatus.t;The new status to set for the act.
*)error : ActError.t option;Error information to associate with the act, if applicable.
*)}val make :
?error:??? ->
workflowDefinitionName:WorkflowDefinitionName.t ->
workflowRunId:UuidString.t ->
sessionId:UuidString.t ->
actId:UuidString.t ->
status:ActStatus.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of WorkflowDefinitionName.t
| `Structure of
(string * [> `String of ActErrorMessageString.t ]) list ])
list ]