docs/TranslationsVerifyParameters.md in phrase-2.3.0 vs docs/TranslationsVerifyParameters.md in phrase-2.3.1

- old
+ new

@@ -3,21 +3,19 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **branch** | **String** | specify the branch to use | [optional] +**locale_id** | **String** | specify the locale of the translations to be verified | [optional] **q** | **String** | Specify a query to find translations by content (including wildcards).<br><br> The following qualifiers are supported in the query:<br> <ul> <li><code>id:translation_id,...</code> for queries on a comma-separated list of ids</li> <li><code>tags:XYZ</code> for tags on the translation</li> <li><code>unverified:{true|false}</code> for verification status</li> <li><code>excluded:{true|false}</code> for exclusion status</li> <li><code>updated_at:{>=|<=}2013-02-21T00:00:00Z</code> for date range queries</li> </ul> Find more examples <a href=\"#overview--usage-examples\">here</a>. | [optional] -**sort** | **String** | Sort criteria. Can be one of: key_name, created_at, updated_at. | [optional] -**order** | **String** | Order direction. Can be one of: asc, desc. | [optional] ## Code Sample ```ruby require 'Phrase' instance = Phrase::TranslationsVerifyParameters.new(branch: my-feature-branch, - q: PhraseApp*%20unverified:true%20tags:feature,center, - sort: updated_at, - order: desc) + locale_id: fc2f11dd6a658fa9652f6f0a9ebee688, + q: PhraseApp*%20unverified:true%20tags:feature,center) ```