You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* GET /comparison-tools/disease-correlation : Get disease correlation comparison data
46
-
* Returns a list of disease correlation objects for use in comparison tools.
46
+
* Returns a paginated list of disease correlation objects for use in comparison tools.
47
47
*
48
48
* @param category An ordered list of categories used to filter the data, where the first value is the category and the second is the subcategory. Pass each value by repeating the 'category' query parameter, e.g. ?category=category1&category=subcategoryA. (required)
49
49
* @param item A list of items to filter the data by. (optional)
50
50
* @param itemFilterType The type of filter to apply to the items. Possible values are 'include' or 'exclude'. (optional, default to include)
51
-
* @return A list of disease correlation objects (status code 200)
51
+
* @param pageNumber The page number. (optional, default to 0)
52
+
* @param pageSize The number of items in a single page. (optional, default to 10)
@NotNull@Parameter(name = "category", description = "An ordered list of categories used to filter the data, where the first value is the category and the second is the subcategory. Pass each value by repeating the 'category' query parameter, e.g. ?category=category1&category=subcategoryA.", required = true, in = ParameterIn.QUERY) @Valid@RequestParam(value = "category", required = true) List<String> category,
88
90
@Parameter(name = "item", description = "A list of items to filter the data by.", in = ParameterIn.QUERY) @Valid@RequestParam(value = "item", required = false) @NullableList<String> item,
89
-
@Parameter(name = "itemFilterType", description = "The type of filter to apply to the items. Possible values are 'include' or 'exclude'.", in = ParameterIn.QUERY) @Valid@RequestParam(value = "itemFilterType", required = false, defaultValue = "include") ItemFilterTypeQueryDtoitemFilterType
91
+
@Parameter(name = "itemFilterType", description = "The type of filter to apply to the items. Possible values are 'include' or 'exclude'.", in = ParameterIn.QUERY) @Valid@RequestParam(value = "itemFilterType", required = false, defaultValue = "include") ItemFilterTypeQueryDtoitemFilterType,
@Min(1) @Max(1000) @Parameter(name = "pageSize", description = "The number of items in a single page.", in = ParameterIn.QUERY) @Valid@RequestParam(value = "pageSize", required = false, defaultValue = "10") IntegerpageSize
Copy file name to clipboardExpand all lines: apps/model-ad/api-next/src/main/java/org/sagebionetworks/model/ad/api/next/api/DiseaseCorrelationApiController.java
Copy file name to clipboardExpand all lines: apps/model-ad/api-next/src/main/java/org/sagebionetworks/model/ad/api/next/api/DiseaseCorrelationApiDelegate.java
* GET /comparison-tools/disease-correlation : Get disease correlation comparison data
33
-
* Returns a list of disease correlation objects for use in comparison tools.
33
+
* Returns a paginated list of disease correlation objects for use in comparison tools.
34
34
*
35
35
* @param category An ordered list of categories used to filter the data, where the first value is the category and the second is the subcategory. Pass each value by repeating the 'category' query parameter, e.g. ?category=category1&category=subcategoryA. (required)
36
36
* @param item A list of items to filter the data by. (optional)
37
37
* @param itemFilterType The type of filter to apply to the items. Possible values are 'include' or 'exclude'. (optional, default to include)
38
-
* @return A list of disease correlation objects (status code 200)
38
+
* @param pageNumber The page number. (optional, default to 0)
39
+
* @param pageSize The number of items in a single page. (optional, default to 10)
Copy file name to clipboardExpand all lines: apps/model-ad/api-next/src/main/java/org/sagebionetworks/model/ad/api/next/api/DiseaseCorrelationApiDelegateImpl.java
0 commit comments