docs/ProjectUpdateParameters.md in phrase-2.8.3 vs docs/ProjectUpdateParameters.md in phrase-2.8.7

- old
+ new

@@ -4,11 +4,13 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **account_id** | **String** | Required if the requesting user is a member of multiple accounts. Account ID to specify the actual account the project should be created in. | [optional] **name** | **String** | (Optional) Name of the project | [optional] -**main_format** | **String** | (Optional) 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://support.phrase.com/hc/en-us/articles/5784070560412\">Format Guide</a> or our <a href=\"#formats\">Formats API Endpoint</a>. | [optional] +**point_of_contact** | **String** | (Optional) User ID of the point of contact for the project. Pass `null` to unset. | [optional] +**main_format** | **String** | (Optional) 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://support.phrase.com/hc/en-us/sections/6111343326364\">Format Guide</a> or our <a href=\"#formats\">Formats API Endpoint</a>. | [optional] +**media** | **String** | (Optional) Main technology stack used in the project. It affects for example the suggested placeholder style. Predefined values include: `Ruby`, `JavaScript`, `AngularJS`, `React`, `iOS`, `Android`, `Python`, `PHP`, `Java`, `Go`, `Windows Phone`, `Rails`, `Node.js`, `.NET`, `Django`, `Symfony`, `Yii Framework`, `Zend Framework`, `Apple App Store Description`, `Google Play Description`, but it can also take any other value. | [optional] **shares_translation_memory** | **Boolean** | (Optional) Indicates whether the project should share the account's translation memory | [optional] **project_image** | **File** | (Optional) Image to identify the project | [optional] **remove_project_image** | **Boolean** | (Optional) Indicates whether the project image should be deleted. | [optional] **workflow** | **String** | (Optional) Review Workflow. \"simple\" / \"review\". <a href=\"https://support.phrase.com/hc/en-us/articles/5784094755484\">Read more</a> | [optional] **machine_translation_enabled** | **Boolean** | (Optional) Enable machine translation support in the project. Required for Autopilot and Smart Suggest | [optional] @@ -33,10 +35,12 @@ ```ruby require 'Phrase' instance = Phrase::ProjectUpdateParameters.new(account_id: abcd1234, name: My Android Project, + point_of_contact: abcd1234, main_format: yml, + media: Python, shares_translation_memory: true, project_image: null, remove_project_image: false, workflow: review, machine_translation_enabled: true,