mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-18 23:50:36 +00:00
Synchronizing API and documentation updates
This commit is contained in:
+4
-2
@@ -5004,7 +5004,7 @@ Name | Type | Description | Notes
|
||||
|
||||
<a name="issueSearchIssues"></a>
|
||||
# **issueSearchIssues**
|
||||
> List<Issue> issueSearchIssues(state, labels, milestones, q, priorityRepoId, type, since, before, assigned, created, mentioned, reviewRequested, owner, team, page, limit)
|
||||
> List<Issue> issueSearchIssues(state, labels, milestones, q, priorityRepoId, type, since, before, assigned, created, mentioned, reviewRequested, reviewed, owner, team, page, limit)
|
||||
|
||||
Search for issues across the repositories that the user has access to
|
||||
|
||||
@@ -5072,12 +5072,13 @@ Boolean assigned = true; // Boolean | filter (issues / pulls) assigned to you, d
|
||||
Boolean created = true; // Boolean | filter (issues / pulls) created by you, default is false
|
||||
Boolean mentioned = true; // Boolean | filter (issues / pulls) mentioning you, default is false
|
||||
Boolean reviewRequested = true; // Boolean | filter pulls requesting your review, default is false
|
||||
Boolean reviewed = true; // Boolean | filter pulls reviewed by you, default is false
|
||||
String owner = "owner_example"; // String | filter by owner
|
||||
String team = "team_example"; // String | filter by team (requires organization owner parameter to be provided)
|
||||
Integer page = 56; // Integer | page number of results to return (1-based)
|
||||
Integer limit = 56; // Integer | page size of results
|
||||
try {
|
||||
List<Issue> result = apiInstance.issueSearchIssues(state, labels, milestones, q, priorityRepoId, type, since, before, assigned, created, mentioned, reviewRequested, owner, team, page, limit);
|
||||
List<Issue> result = apiInstance.issueSearchIssues(state, labels, milestones, q, priorityRepoId, type, since, before, assigned, created, mentioned, reviewRequested, reviewed, owner, team, page, limit);
|
||||
System.out.println(result);
|
||||
} catch (ApiException e) {
|
||||
System.err.println("Exception when calling IssueApi#issueSearchIssues");
|
||||
@@ -5101,6 +5102,7 @@ Name | Type | Description | Notes
|
||||
**created** | **Boolean**| filter (issues / pulls) created by you, default is false | [optional]
|
||||
**mentioned** | **Boolean**| filter (issues / pulls) mentioning you, default is false | [optional]
|
||||
**reviewRequested** | **Boolean**| filter pulls requesting your review, default is false | [optional]
|
||||
**reviewed** | **Boolean**| filter pulls reviewed by you, default is false | [optional]
|
||||
**owner** | **String**| filter by owner | [optional]
|
||||
**team** | **String**| filter by team (requires organization owner parameter to be provided) | [optional]
|
||||
**page** | **Integer**| page number of results to return (1-based) | [optional]
|
||||
|
||||
Reference in New Issue
Block a user