Module Values.BatchGetCommitsErrorSource

Returns information about errors in a BatchGetCommits operation.

Sourcetype nonrec t = {
  1. commitId : ObjectId.t option;
    (*

    A commit ID that either could not be found or was not in a valid format.

    *)
  2. errorCode : ErrorCode.t option;
    (*

    An error code that specifies whether the commit ID was not valid or not found.

    *)
  3. errorMessage : ErrorMessage.t option;
    (*

    An error message that provides detail about why the commit ID either was not found or was not valid.

    *)
}
Sourceval make : ?commitId:??? -> ?errorCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ObjectId.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