package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. errorResult : ErrorProto.t;
    (*

    [Output-only] Final error result of the job. If present, indicates that the job has completed and was unsuccessful.

    *)
  2. errors : ErrorProto.t list;
    (*

    [Output-only] All errors encountered during the running of the job. Errors here do not necessarily mean that the job has completed or was unsuccessful.

    *)
  3. state : string;
    (*

    [Output-only] Running state of the job.

    *)
}
val errorResult : (t, ErrorProto.t) GapiLens.t
val errors : (t, ErrorProto.t list) GapiLens.t
val state : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t