docs/CommentsListParameters.md in phrase-2.17.0 vs docs/CommentsListParameters.md in phrase-2.18.0
- old
+ new
@@ -6,18 +6,20 @@
------------ | ------------- | ------------- | -------------
**branch** | **String** | Specify the branch to use | [optional]
**query** | **String** | Search query for comment messages | [optional]
**locale_ids** | **Array<String>** | Search comments by their assigned locales | [optional]
**filters** | **Array<String>** | Specify filters to find comments by | [optional]
+**order** | **String** | Specify ordering of comments | [optional]
## Code Sample
```ruby
require 'Phrase'
instance = Phrase::CommentsListParameters.new(branch: my-feature-branch,
query: Some comment content,
locale_ids: ["someId","otherId"],
- filters: ["read","unread"])
+ filters: ["read","unread"],
+ order: desc)
```