Module Values_0.ParentStepDetailsSource

A detailed status of the parent step.

Sourcetype nonrec t = {
  1. stepExecutionId : String_.t option;
    (*

    The unique ID of a step execution.

    *)
  2. stepName : String_.t option;
    (*

    The name of the step.

    *)
  3. action : AutomationActionName.t option;
    (*

    The name of the automation action.

    *)
  4. iteration : Integer.t option;
    (*

    The current repetition of the loop represented by an integer.

    *)
  5. iteratorValue : String_.t option;
    (*

    The current value of the specified iterator in the loop.

    *)
}
Sourceval make : ?stepExecutionId:??? -> ?stepName:??? -> ?action:??? -> ?iteration:??? -> ?iteratorValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.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