docs/IcuSkeletonParameters.md in phrase-2.5.1 vs docs/IcuSkeletonParameters.md in phrase-2.6.0
- old
+ new
@@ -4,18 +4,20 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**content** | **String** | Source content | [optional]
**locale_codes** | **Array<String>** | Locale codes | [optional]
+**keep_content** | **Boolean** | Keep the content and add missing plural forms for each locale | [optional]
**zero_form_enabled** | **Boolean** | Indicates whether the zero form should be included or excluded in the returned skeletons | [optional]
## Code Sample
```ruby
require 'Phrase'
instance = Phrase::IcuSkeletonParameters.new(content: {number, plural, one {One} other {%{n}}},
locale_codes: ["en"],
+ keep_content: null,
zero_form_enabled: null)
```