Module Values.BatchGetCommitsInputSource

Returns information about the contents of one or more commits in a repository.

Sourcetype nonrec t = {
  1. commitIds : CommitIdsInputList.t;
    (*

    The full commit IDs of the commits to get information about. You must supply the full SHA IDs of each commit. You cannot use shortened SHA IDs.

    *)
  2. repositoryName : RepositoryName.t;
    (*

    The name of the repository that contains the commits.

    *)
}
Sourceval context_ : string
Sourceval make : commitIds:CommitIdsInputList.t -> repositoryName:RepositoryName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ObjectId.t ] list | `String of RepositoryName.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