# Phrase::ReleaseCreateParameters ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **description** | **String** | Description of the release | [optional] **platforms** | **Array<String>** | List of platforms the release should support. | [optional] **branch** | **String** | Branch used for release | [optional] ## Code Sample ```ruby require 'Phrase' instance = Phrase::ReleaseCreateParameters.new(description: My first Release, platforms: ["android","ios"], branch: my-feature-branch) ```