docs/CommentRepliesApi.md in phrase-2.17.0 vs docs/CommentRepliesApi.md in phrase-2.18.0
- old
+ new
@@ -46,11 +46,12 @@
x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
page: 1, # Integer | Page number
per_page: 25, # Integer | Limit on the number of objects to be returned, between 1 and 100. 25 by default
branch: 'my-feature-branch', # String | specify the branch to use
query: 'Some comment content', # String | Search query for comment messages
- filters: ['[\"read\",\"unread\"]'] # Array<String> | Specify the filter for the comments
+ filters: ['[\"read\",\"unread\"]'], # Array<String> | Specify the filter for the comments
+ order: 'desc' # String | Order direction. Can be one of: asc, desc.
}
begin
#List replies
result = api_instance.replies_list(project_id, key_id, comment_id, replies_list_parameters, opts)
@@ -73,9 +74,10 @@
**page** | **Integer**| Page number | [optional]
**per_page** | **Integer**| Limit on the number of objects to be returned, between 1 and 100. 25 by default | [optional]
**branch** | **String**| specify the branch to use | [optional]
**query** | **String**| Search query for comment messages | [optional]
**filters** | [**Array<String>**](String.md)| Specify the filter for the comments | [optional]
+ **order** | **String**| Order direction. Can be one of: asc, desc. | [optional]
### Return type
Response<([**Array<Comment>**](Comment.md))>