Module Values.JobEntityIdentifiersUnionSource

The details of a job entity identifier.

Sourcetype nonrec t = {
  1. jobDetails : JobDetailsIdentifiers.t option;
    (*

    The job details.

    *)
  2. jobAttachmentDetails : JobAttachmentDetailsIdentifiers.t option;
    (*

    The job attachment details.

    *)
  3. stepDetails : StepDetailsIdentifiers.t option;
    (*

    The step details.

    *)
  4. environmentDetails : EnvironmentDetailsIdentifiers.t option;
    (*

    The environment details.

    *)
}
Sourceval make : ?jobDetails:??? -> ?jobAttachmentDetails:??? -> ?stepDetails:??? -> ?environmentDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of JobId.t ]) 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