docs/CommentCreateParameters.md in phrase-3.6.0 vs docs/CommentCreateParameters.md in phrase-3.7.0
- old
+ new
@@ -2,18 +2,20 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
+**message** | **String** | Comment message |
**branch** | **String** | specify the branch to use | [optional]
-**message** | **String** | Comment message | [optional]
+**locale_ids** | **Array<String>** | specify the locales for the comment | [optional]
## Code Sample
```ruby
require 'Phrase'
-instance = Phrase::CommentCreateParameters.new(branch: my-feature-branch,
- message: Some message...)
+instance = Phrase::CommentCreateParameters.new(message: Some message...,
+ branch: my-feature-branch,
+ locale_ids: ["someId","someOtherId"])
```