Module Values.GetCommentsForComparedCommitInputSource

Returns information about comments made on the comparison between two commits. Reaction counts might include numbers from user identities who were deleted after the reaction was made. For a count of reactions from active identities, use GetCommentReactions.

Sourcetype nonrec t = {
  1. repositoryName : RepositoryName.t;
    (*

    The name of the repository where you want to compare commits.

    *)
  2. beforeCommitId : CommitId.t option;
    (*

    To establish the directionality of the comparison, the full commit ID of the before commit.

    *)
  3. afterCommitId : CommitId.t;
    (*

    To establish the directionality of the comparison, the full commit ID of the after commit.

    *)
  4. nextToken : NextToken.t option;
    (*

    An enumeration token that when provided in a request, returns the next batch of the results.

    *)
  5. maxResults : MaxResults.t option;
    (*

    A non-zero, non-negative integer used to limit the number of returned results. The default is 100 comments, but you can configure up to 500.

    *)
}
Sourceval context_ : string
Sourceval make : ?beforeCommitId:??? -> ?nextToken:??? -> ?maxResults:??? -> repositoryName:RepositoryName.t -> afterCommitId:CommitId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `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