Sha256: 0b30d2751e24290827d3a1469b00bb5cc9aa936959f17cf7cc152ed8ec64baa2

Contents?: true

Size: 1.81 KB

Versions: 14

Compression:

Stored size: 1.81 KB

Contents

# Phrase::ProjectCreateParameters

## 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] 
**source_project_id** | **String** | When a source project ID is given, a clone of that project will be created, including all locales, keys and translations as well as the main project settings if they are not defined otherwise through the params. | [optional] 

## Code Sample

```ruby
require 'Phrase'

instance = Phrase::ProjectCreateParameters.new(name: My Android Project,
                                 main_format: yml,
                                 shares_translation_memory: true,
                                 project_image: null,
                                 remove_project_image: null,
                                 account_id: abcd1234,
                                 source_project_id: abcd1234)
```


Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
phrase-2.0.0 docs/ProjectCreateParameters.md
phrase-1.0.14 docs/ProjectCreateParameters.md
phrase-1.0.13 docs/ProjectCreateParameters.md
phrase-1.0.12 docs/ProjectCreateParameters.md
phrase-1.0.11 docs/ProjectCreateParameters.md
phrase-1.0.10 docs/ProjectCreateParameters.md
phrase-1.0.9 docs/ProjectCreateParameters.md
phrase-1.0.8 docs/ProjectCreateParameters.md
phrase-1.0.7 docs/ProjectCreateParameters.md
phrase-1.0.6 docs/ProjectCreateParameters.md
phrase-1.0.5 docs/ProjectCreateParameters.md
phrase-1.0.4 docs/ProjectCreateParameters.md
phrase-1.0.3 docs/ProjectCreateParameters.md
phrase-1.0.2 docs/ProjectCreateParameters.md