Values.StepDetailsSourceDetails about a step operation.
type nonrec t = {attempt : AttemptCount.t option;The current attempt number for this step.
*)nextAttemptTimestamp : ExecutionTimestamp.t option;The date and time when the next attempt is scheduled, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD). Only populated when the step is in a pending state.
*)result : OperationPayload.t option;The JSON response payload from the step operation.
*)error : ErrorObject.t option;Details about the step failure.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Integer of AttemptCount.t
| `String of OperationPayload.t
| `Structure of
(string
* [> `List of [> `String of StackTraceEntry.t ] list
| `String of ErrorMessage.t ])
list
| `Timestamp of ExecutionTimestamp.t ])
list ]