diff --git a/docs/IssueApi.md b/docs/IssueApi.md index 89d9f72..7e83abb 100644 --- a/docs/IssueApi.md +++ b/docs/IssueApi.md @@ -4781,7 +4781,7 @@ IssueApi apiInstance = new IssueApi(); String owner = "owner_example"; // String | owner of the repo String repo = "repo_example"; // String | name of the repo String state = "state_example"; // String | whether issue is open or closed -String labels = "labels_example"; // String | comma separated list of labels. Fetch only issues that have any of this labels. Non existent labels are discarded +String labels = "labels_example"; // String | comma separated list of label names. Fetch only issues that have any of this label names. Non existent labels are discarded. String q = "q_example"; // String | search string String type = "type_example"; // String | filter by type (issues / pulls) if set String milestones = "milestones_example"; // String | comma separated list of milestone names or ids. It uses names and fall back to ids. Fetch only issues that have any of this milestones. Non existent milestones are discarded @@ -4808,7 +4808,7 @@ Name | Type | Description | Notes **owner** | **String**| owner of the repo | **repo** | **String**| name of the repo | **state** | **String**| whether issue is open or closed | [optional] [enum: closed, open, all] - **labels** | **String**| comma separated list of labels. Fetch only issues that have any of this labels. Non existent labels are discarded | [optional] + **labels** | **String**| comma separated list of label names. Fetch only issues that have any of this label names. Non existent labels are discarded. | [optional] **q** | **String**| search string | [optional] **type** | **String**| filter by type (issues / pulls) if set | [optional] [enum: issues, pulls] **milestones** | **String**| comma separated list of milestone names or ids. It uses names and fall back to ids. Fetch only issues that have any of this milestones. Non existent milestones are discarded | [optional] diff --git a/src/main/java/org/gitnex/tea4j/v2/apis/IssueApi.java b/src/main/java/org/gitnex/tea4j/v2/apis/IssueApi.java index 6eba288..c0e4861 100644 --- a/src/main/java/org/gitnex/tea4j/v2/apis/IssueApi.java +++ b/src/main/java/org/gitnex/tea4j/v2/apis/IssueApi.java @@ -866,8 +866,8 @@ public interface IssueApi { * @param owner owner of the repo (required) * @param repo name of the repo (required) * @param state whether issue is open or closed (optional) - * @param labels comma separated list of labels. Fetch only issues that have any of this labels. - * Non existent labels are discarded (optional) + * @param labels comma separated list of label names. Fetch only issues that have any of this + * label names. Non existent labels are discarded. (optional) * @param q search string (optional) * @param type filter by type (issues / pulls) if set (optional) * @param milestones comma separated list of milestone names or ids. It uses names and fall back