|
60 | 60 | import org.zendesk.client.v2.model.hc.Article;
|
61 | 61 | import org.zendesk.client.v2.model.hc.ArticleAttachments;
|
62 | 62 | import org.zendesk.client.v2.model.hc.Category;
|
| 63 | +import org.zendesk.client.v2.model.hc.PermissionGroup; |
63 | 64 | import org.zendesk.client.v2.model.hc.Section;
|
64 | 65 | import org.zendesk.client.v2.model.hc.Subscription;
|
65 | 66 | import org.zendesk.client.v2.model.hc.Translation;
|
66 |
| -import org.zendesk.client.v2.model.hc.PermissionGroup; |
67 | 67 | import org.zendesk.client.v2.model.hc.UserSegment;
|
68 | 68 | import org.zendesk.client.v2.model.schedules.Holiday;
|
69 | 69 | import org.zendesk.client.v2.model.schedules.Schedule;
|
@@ -1754,13 +1754,13 @@ public <T extends SearchResultEntity> Iterable<T> getSearchResults(Class<T> type
|
1754 | 1754 |
|
1755 | 1755 | /**
|
1756 | 1756 | * Search API implementation with pagination support.
|
1757 |
| - * |
1758 |
| - * @param String query string used filter a type given by searchType |
1759 |
| - * @param Map<String, Object> additional parameters other than filter string like per_page, page etc |
1760 |
| - * @param String name of any field of the searchType |
1761 |
| - * @param SortOrder |
1762 |
| - * @param Class<?> type of search entity like Ticket, User etc |
1763 |
| - * @param Class<T> page return type to which the search result will be deserialized |
| 1757 | + * |
| 1758 | + * @param searchType type of search entity like Ticket, User etc |
| 1759 | + * @param pageType page return type to which the search result will be deserialized |
| 1760 | + * @param query string used filter a type given by searchType |
| 1761 | + * @param queryParams additional parameters other than filter string like per_page, page etc |
| 1762 | + * @param sortBy name of any field of the searchType |
| 1763 | + * @param sortOrder sort order |
1764 | 1764 | */
|
1765 | 1765 | public <T> Optional<T> getSearchResults(
|
1766 | 1766 | final Class<?> searchType,
|
@@ -1796,10 +1796,10 @@ public <T> Optional<T> getSearchResults(
|
1796 | 1796 | /**
|
1797 | 1797 | * Ticket Search API implementation with pagination support.
|
1798 | 1798 | *
|
1799 |
| - * @param String query string used filter a type given by searchType |
1800 |
| - * @param Map<String, Object> additional parameters other than filter string like per_page, page etc |
1801 |
| - * @param String name of any field of the searchType |
1802 |
| - * @param SortOrder |
| 1799 | + * @param query string used filter a type given by searchType |
| 1800 | + * @param queryParams additional parameters other than filter string like per_page, page etc |
| 1801 | + * @param sortBy name of any field of the searchType |
| 1802 | + * @param sortOrder sort order |
1803 | 1803 | */
|
1804 | 1804 | public Optional<TicketPage> getSearchTicketResults(
|
1805 | 1805 | final String query,
|
|
0 commit comments