Values.GetCommentsForComparedCommitInputSourceReturns 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.
type nonrec t = {repositoryName : RepositoryName.t;The name of the repository where you want to compare commits.
*)beforeCommitId : CommitId.t option;To establish the directionality of the comparison, the full commit ID of the before commit.
*)afterCommitId : CommitId.t;To establish the directionality of the comparison, the full commit ID of the after commit.
*)nextToken : NextToken.t option;An enumeration token that when provided in a request, returns the next batch of the results.
*)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.
*)}val make :
?beforeCommitId:??? ->
?nextToken:??? ->
?maxResults:??? ->
repositoryName:RepositoryName.t ->
afterCommitId:CommitId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Integer of MaxResults.t | `String of RepositoryName.t ])
list ]