Values.ActivityTaskSourceUnit of work sent to an activity worker.
type nonrec t = {taskToken : TaskToken.t option;The opaque string used as a handle on the task. This token is used by workers to communicate progress and response information back to the system about the task.
*)activityId : ActivityId.t option;The unique ID of the task.
*)startedEventId : EventId.t option;The ID of the ActivityTaskStarted event recorded in the history.
*)workflowExecution : WorkflowExecution.t option;The workflow execution that started this activity task.
*)activityType : ActivityType.t option;The type of this activity task.
*)input : Data.t option;The inputs provided when the activity task was scheduled. The form of the input is user defined and should be meaningful to the activity implementation.
*)}type nonrec error = [ | `LimitExceededFault of LimitExceededFault.t| `OperationNotPermittedFault of OperationNotPermittedFault.t| `UnknownResourceFault of UnknownResourceFault.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `LimitExceededFault of LimitExceededFault.t
| `OperationNotPermittedFault of OperationNotPermittedFault.t
| `UnknownResourceFault of UnknownResourceFault.t
| `Unknown_operation_error of string * string option ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `LimitExceededFault of LimitExceededFault.t
| `OperationNotPermittedFault of OperationNotPermittedFault.t
| `UnknownResourceFault of UnknownResourceFault.t
| `Unknown_operation_error of string * string option ]val to_value :
t ->
[> `Structure of
(string
* [> `Long of EventId.t
| `String of TaskToken.t
| `Structure of (string * [> `String of WorkflowId.t ]) list ])
list ]