docs/JobLocalesCreateParameters.md in phrase-2.4.0 vs docs/JobLocalesCreateParameters.md in phrase-2.5.0

- old
+ new

@@ -4,18 +4,20 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **branch** | **String** | specify the branch to use | [optional] **locale_id** | **String** | locale id | [optional] -**user_ids** | **Array<String>** | Array of user ids to be assigned to the job locale | [optional] +**user_ids** | **Array<String>** | Array of user ids to be assigned to the job locale as translators | [optional] +**reviewer_ids** | **Array<String>** | Array of reviewer ids to be assigned to the job locale as reviewers | [optional] ## Code Sample ```ruby require 'Phrase' instance = Phrase::JobLocalesCreateParameters.new(branch: my-feature-branch, locale_id: abcd1234cdef1234abcd1234cdef1234, - user_ids: ["abcd1234cdef1234abcd1234cdef1234"]) + user_ids: ["abcd1234cdef1234abcd1234cdef1234"], + reviewer_ids: ["abcd1234cdef1234abcd1234cdef1234"]) ```