docs/RepliesListParameters.md in phrase-2.17.0 vs docs/RepliesListParameters.md in phrase-2.18.0
- old
+ new
@@ -5,17 +5,19 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**branch** | **String** | Specify the branch to use | [optional]
**query** | **String** | Search query for comment messages | [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::RepliesListParameters.new(branch: my-feature-branch,
query: Some comment content,
- filters: ["read","unread"])
+ filters: ["read","unread"],
+ order: desc)
```