# Phrase::CommentCreateParameters ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **message** | **String** | Comment message | **branch** | **String** | specify the branch to use | [optional] **locale_ids** | **Array<String>** | specify the locales for the comment | [optional] ## Code Sample ```ruby require 'Phrase' instance = Phrase::CommentCreateParameters.new(message: Some message..., branch: my-feature-branch, locale_ids: ["someId","someOtherId"]) ```