Uses of Class
io.gitea.model.PullReview
-
Packages that use PullReview Package Description io.gitea.api io.gitea.model -
-
Uses of PullReview in io.gitea.api
Methods in io.gitea.api that return PullReview Modifier and Type Method Description PullReviewRepositoryApi. repoCreatePullReview(java.lang.String owner, java.lang.String repo, java.lang.Long index, CreatePullReviewOptions body)Create a review to an pull requestPullReviewRepositoryApi. repoDismissPullReview(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, DismissPullReviewOptions body)Dismiss a review for a pull requestPullReviewRepositoryApi. repoGetPullReview(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id)Get a specific review for a pull requestPullReviewRepositoryApi. repoSubmitPullReview(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, SubmitPullReviewOptions body)Submit a pending review to an pull requestPullReviewRepositoryApi. repoUnDismissPullReview(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id)Cancel to dismiss a review for a pull requestMethods in io.gitea.api that return types with arguments of type PullReview Modifier and Type Method Description java.util.List<PullReview>RepositoryApi. repoCreatePullReviewRequests(java.lang.String owner, java.lang.String repo, java.lang.Long index, PullReviewRequestOptions body)create review requests for a pull requestApiResponse<java.util.List<PullReview>>RepositoryApi. repoCreatePullReviewRequestsWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long index, PullReviewRequestOptions body)create review requests for a pull requestApiResponse<PullReview>RepositoryApi. repoCreatePullReviewWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long index, CreatePullReviewOptions body)Create a review to an pull requestApiResponse<PullReview>RepositoryApi. repoDismissPullReviewWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, DismissPullReviewOptions body)Dismiss a review for a pull requestApiResponse<PullReview>RepositoryApi. repoGetPullReviewWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id)Get a specific review for a pull requestjava.util.List<PullReview>RepositoryApi. repoListPullReviews(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Integer page, java.lang.Integer limit)List all reviews for a pull requestApiResponse<java.util.List<PullReview>>RepositoryApi. repoListPullReviewsWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Integer page, java.lang.Integer limit)List all reviews for a pull requestApiResponse<PullReview>RepositoryApi. repoSubmitPullReviewWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, SubmitPullReviewOptions body)Submit a pending review to an pull requestApiResponse<PullReview>RepositoryApi. repoUnDismissPullReviewWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id)Cancel to dismiss a review for a pull requestMethod parameters in io.gitea.api with type arguments of type PullReview Modifier and Type Method Description com.squareup.okhttp.CallRepositoryApi. repoCreatePullReviewAsync(java.lang.String owner, java.lang.String repo, java.lang.Long index, CreatePullReviewOptions body, ApiCallback<PullReview> callback)Create a review to an pull request (asynchronously)com.squareup.okhttp.CallRepositoryApi. repoCreatePullReviewRequestsAsync(java.lang.String owner, java.lang.String repo, java.lang.Long index, PullReviewRequestOptions body, ApiCallback<java.util.List<PullReview>> callback)create review requests for a pull request (asynchronously)com.squareup.okhttp.CallRepositoryApi. repoDismissPullReviewAsync(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, DismissPullReviewOptions body, ApiCallback<PullReview> callback)Dismiss a review for a pull request (asynchronously)com.squareup.okhttp.CallRepositoryApi. repoGetPullReviewAsync(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, ApiCallback<PullReview> callback)Get a specific review for a pull request (asynchronously)com.squareup.okhttp.CallRepositoryApi. repoListPullReviewsAsync(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<PullReview>> callback)List all reviews for a pull request (asynchronously)com.squareup.okhttp.CallRepositoryApi. repoSubmitPullReviewAsync(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, SubmitPullReviewOptions body, ApiCallback<PullReview> callback)Submit a pending review to an pull request (asynchronously)com.squareup.okhttp.CallRepositoryApi. repoUnDismissPullReviewAsync(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, ApiCallback<PullReview> callback)Cancel to dismiss a review for a pull request (asynchronously) -
Uses of PullReview in io.gitea.model
Methods in io.gitea.model that return PullReview Modifier and Type Method Description PullReviewPullReview. body(java.lang.String body)PullReviewPullReview. commentsCount(java.lang.Long commentsCount)PullReviewPullReview. commitId(java.lang.String commitId)PullReviewPullReview. dismissed(java.lang.Boolean dismissed)PullReviewPullReview. htmlUrl(java.lang.String htmlUrl)PullReviewPullReview. id(java.lang.Long id)PullReviewPullReview. official(java.lang.Boolean official)PullReviewPullReview. pullRequestUrl(java.lang.String pullRequestUrl)PullReviewPullReview. stale(java.lang.Boolean stale)PullReviewPullReview. state(java.lang.String state)PullReviewPullReview. submittedAt(org.threeten.bp.OffsetDateTime submittedAt)PullReviewPullReview. team(Team team)PullReviewPullReview. user(User user)
-