docs/KeyUpdateParameters.md in phrase-2.20.0 vs docs/KeyUpdateParameters.md in phrase-2.21.0
- old
+ new
@@ -17,10 +17,11 @@
**unformatted** | **Boolean** | Indicates whether the key should be exported as \"unformatted\". Supported by Android XML and other formats. | [optional]
**xml_space_preserve** | **Boolean** | Indicates whether the key should be exported with \"xml:space=preserve\". Supported by several XML-based formats. | [optional]
**original_file** | **String** | Original file attribute. Used in some formats, e.g. XLIFF. | [optional]
**localized_format_string** | **String** | NSStringLocalizedFormatKey attribute. Used in .stringsdict format. | [optional]
**localized_format_key** | **String** | NSStringLocalizedFormatKey attribute. Used in .stringsdict format. | [optional]
+**custom_metadata** | **Object** | Updates/Creates custom metadata property name and value pairs to be associated with key. If you want to delete a custom metadata property, you can set its value to null. If you want to update a custom metadata property, you can set its value to the new value. | [optional]
## Code Sample
```ruby
require 'Phrase'
@@ -31,15 +32,16 @@
plural: null,
name_plural: home.index.headlines,
data_type: number,
tags: awesome-feature,needs-proofreading,
max_characters_allowed: 140,
- screenshot: [B@39e08d73,
+ screenshot: [B@1a7c593b,
remove_screenshot: null,
unformatted: null,
xml_space_preserve: null,
original_file: null,
localized_format_string: null,
- localized_format_key: null)
+ localized_format_key: null,
+ custom_metadata: {"fruit":"Apple","vegetable":"Tomato"})
```