# Phrase::ProjectUpdateParameters ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **name** | **String** | Name of the project | [optional] **main_format** | **String** | Main file format specified by its API Extension name. Used for locale downloads if no format is specified. For API Extension names of available file formats see <a href=\"https://help.phrase.com/help/supported-platforms-and-formats\">Format Guide</a> or our <a href=\"#formats\">Formats API Endpoint</a>. | [optional] **shares_translation_memory** | **Boolean** | Indicates whether the project should share the account's translation memory | [optional] **project_image** | **File** | Image to identify the project | [optional] **remove_project_image** | **Boolean** | Indicates whether the project image should be deleted. | [optional] **account_id** | **String** | Account ID to specify the actual account the project should be created in. Required if the requesting user is a member of multiple accounts. | [optional] ## Code Sample ```ruby require 'Phrase' instance = Phrase::ProjectUpdateParameters.new(name: My Android Project, main_format: yml, shares_translation_memory: true, project_image: null, remove_project_image: null, account_id: abcd1234) ```