Sha256: 95bd1686fae0d5af09350f09f66f7cb8fa6f4b7dc3cf371dcb7ee9ed8a4e4bfa
Contents?: true
Size: 1.59 KB
Versions: 19
Compression:
Stored size: 1.59 KB
Contents
# Phrase::DistributionCreateParameters ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **name** | **String** | Name of the distribution | [optional] **project_id** | **String** | Project id the distribution should be assigned to. | [optional] **platforms** | **Array<String>** | List of platforms the distribution should support. | [optional] **format_options** | **Hash<String, String>** | Additional formatting and render options. Only <code>enclose_in_cdata</code> is available for platform <code>android</code>. | [optional] **fallback_to_non_regional_locale** | **Boolean** | Indicates whether to fallback to non regional locale when locale can not be found | [optional] **fallback_to_default_locale** | **Boolean** | Indicates whether to fallback to projects default locale when locale can not be found | [optional] **use_last_reviewed_version** | **Boolean** | Use last reviewed instead of latest translation in a project | [optional] ## Code Sample ```ruby require 'Phrase' instance = Phrase::DistributionCreateParameters.new(name: My Android Distribution, project_id: abcd1234abcd1234abcd1234, platforms: ["android","ios"], format_options: {xml:{enclose_in_cdata:'1'}}, fallback_to_non_regional_locale: true, fallback_to_default_locale: true, use_last_reviewed_version: true) ```
Version data entries
19 entries across 19 versions & 1 rubygems