docs/LocaleDownloadCreateParameters.md in phrase-3.4.0 vs docs/LocaleDownloadCreateParameters.md in phrase-3.5.0

- old
+ new

@@ -13,10 +13,11 @@ **keep_notranslate_tags** | **Boolean** | Indicates whether [NOTRANSLATE] tags should be kept. | [optional] **format_options** | **Object** | Additional formatting and render options. See the <a href=\"https://support.phrase.com/hc/en-us/sections/6111343326364\">format guide</a> for a list of options available for each format. Specify format options like this: <code>...&format_options[foo]=bar</code> | [optional] **encoding** | **String** | Enforces a specific encoding on the file contents. Valid options are \"UTF-8\", \"UTF-16\" and \"ISO-8859-1\". | [optional] **include_unverified_translations** | **Boolean** | if set to false unverified translations are excluded | [optional] **use_last_reviewed_version** | **Boolean** | If set to true the last reviewed version of a translation is used. This is only available if the review workflow is enabled for the project. | [optional] +**locale_ids** | **Array<String>** | Locale IDs or locale names | [optional] **fallback_locale_id** | **String** | If a key has no translation in the locale being downloaded the translation in the fallback locale will be used. Provide the ID of the locale that should be used as the fallback. Requires include_empty_translations to be set to <code>true</code>. | [optional] **source_locale_id** | **String** | Provides the source language of a corresponding job as the source language of the generated locale file. This parameter will be ignored unless used in combination with a <code>tag</code> parameter indicating a specific job. | [optional] **custom_metadata_filters** | **Object** | Custom metadata filters. Provide the name of the metadata field and the value to filter by. Only keys with matching metadata will be included in the download. | [optional] ## Code Sample @@ -33,9 +34,10 @@ keep_notranslate_tags: true, format_options: null, encoding: UTF-8, include_unverified_translations: true, use_last_reviewed_version: null, + locale_ids: ["de","en"], fallback_locale_id: abcd1234abcd1234abcd1234abcd1234, source_locale_id: abcd1234abcd1234abcd1234abcd1234, custom_metadata_filters: null) ```