Class GitPullRequestQueryParameters

java.lang.Object
org.azd.git.types.GitPullRequestQueryParameters

public class GitPullRequestQueryParameters extends Object
  • Field Details

    • top

      public Integer top
      The number of pull requests to retrieve.
    • skip

      public Integer skip
      The number of pull requests to ignore. For example, to retrieve results 101-150, set top to 50 and skip to 100.
    • creatorId

      public String creatorId
      If set, search for pull requests that were created by this identity.
    • maxTime

      public String maxTime
      If specified, filters pull requests that created/closed before this date based on the queryTimeRangeType specified.
    • minTime

      public String minTime
      If specified, filters pull requests that created/closed after this date based on the queryTimeRangeType specified.
    • queryTimeRangeType

      public PullRequestTimeRange queryTimeRangeType
      The type of time range which should be used for minTime and maxTime. Defaults to Created if unset.
    • repositoryId

      public String repositoryId
      If set, search for pull requests whose target branch is in this repository.
    • reviewerId

      public String reviewerId
      If set, search for pull requests that have this identity as a reviewer.
    • sourceRefName

      public String sourceRefName
      If set, search for pull requests from this branch.
    • sourceRepositoryId

      public String sourceRepositoryId
      If set, search for pull requests whose source branch is in this repository.
    • status

      public PullRequestStatus status
      If set, search for pull requests that are in this state. Defaults to Active if unset.
    • targetRefName

      public String targetRefName
      If set, search for pull requests into this branch.
  • Constructor Details

    • GitPullRequestQueryParameters

      public GitPullRequestQueryParameters()
  • Method Details