Module Values.BatchJobExecutionSummarySource

A subset of the possible batch job attributes. Used in the batch job list.

Sourcetype nonrec t = {
  1. applicationId : Identifier.t option;
    (*

    The unique identifier of the application that hosts this batch job.

    *)
  2. batchJobIdentifier : BatchJobIdentifier.t option;
    (*

    The unique identifier of this batch job.

    *)
  3. endTime : Timestamp.t option;
    (*

    The timestamp when this batch job execution ended.

    *)
  4. executionId : Identifier.t option;
    (*

    The unique identifier of this execution of the batch job.

    *)
  5. jobId : String100.t option;
    (*

    The unique identifier of a particular batch job.

    *)
  6. jobName : String100.t option;
    (*

    The name of a particular batch job.

    *)
  7. jobType : BatchJobType.t option;
    (*

    The type of a particular batch job execution.

    *)
  8. returnCode : String_.t option;
    (*

    The batch job return code from either the Blu Age or Micro Focus runtime engines. For more information, see Batch return codes in the IBM WebSphere Application Server documentation.

    *)
  9. startTime : Timestamp.t option;
    (*

    The timestamp when a particular batch job execution started.

    *)
  10. status : BatchJobExecutionStatus.t option;
    (*

    The status of a particular batch job execution.

    *)
}
Sourceval make : ?applicationId:??? -> ?batchJobIdentifier:??? -> ?endTime:??? -> ?executionId:??? -> ?jobId:??? -> ?jobName:??? -> ?jobType:??? -> ?returnCode:??? -> ?startTime:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Identifier.t | `Structure of (string * [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of String_.t ]) list ]) list ]) list | `Timestamp of Timestamp.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