Module Values.StepDetailsEntitySource

The details of a step entity.

Sourcetype nonrec t = {
  1. jobId : JobId.t option;
    (*

    The job ID.

    *)
  2. stepId : StepId.t option;
    (*

    The step ID.

    *)
  3. schemaVersion : String_.t option;
    (*

    The schema version for a step template.

    *)
  4. template : Document.t option;
    (*

    The template for a step.

    *)
  5. dependencies : DependenciesList.t option;
    (*

    The dependencies for a step.

    *)
}
Sourceval make : ?jobId:??? -> ?stepId:??? -> ?schemaVersion:??? -> ?template:??? -> ?dependencies:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of StepId.t ] list | `String of JobId.t | `Structure of 'a 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