Values.DescribePullRequestEventsInputSourceReturns information about one or more pull request events.
type nonrec t = {pullRequestId : PullRequestId.t;The system-generated ID of the pull request. To get this ID, use ListPullRequests.
*)pullRequestEventType : PullRequestEventType.t option;Optional. The pull request event type about which you want to return information.
*)actorArn : Arn.t option;The Amazon Resource Name (ARN) of the user whose actions resulted in the event. Examples include updating the pull request with more commits or changing the status of a pull request.
*)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 events, which is also the maximum number of events that can be returned in a result.
*)}val make :
?pullRequestEventType:??? ->
?actorArn:??? ->
?nextToken:??? ->
?maxResults:??? ->
pullRequestId:PullRequestId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of MaxResults.t
| `String of PullRequestId.t ])
list ]