You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -41,6 +41,7 @@ with phrase_api.ApiClient(configuration) as api_client:
41
41
branch ='branch_example'# str | specify the branch to use
42
42
tags ='tags_example'# str | List of tags separated by comma to be associated with the new keys contained in the upload.
43
43
update_translations =True# bool | Indicates whether existing translations should be updated with the file content.
44
+
update_custom_metadata =True# bool | Indicates whether existing custom metadata properties should be updated with the file content (default to True)
44
45
update_translation_keys =True# bool | Pass `false` here to prevent new keys from being created and existing keys updated. (default to True)
45
46
update_translations_on_source_match =False# bool | Update target translations only if the source translations of the uploaded multilingual file match the stored translations. (default to False)
46
47
update_descriptions =True# bool | Existing key descriptions will be updated with the file content. Empty descriptions overwrite existing descriptions.
@@ -58,7 +59,7 @@ with phrase_api.ApiClient(configuration) as api_client:
print("Exception when calling UploadsApi->upload_create: %s\n"% e)
@@ -77,6 +78,7 @@ Name | Type | Description | Notes
77
78
**branch** | **str**| specify the branch to use | [optional]
78
79
**tags** | **str**| List of tags separated by comma to be associated with the new keys contained in the upload. | [optional]
79
80
**update_translations** | **bool**| Indicates whether existing translations should be updated with the file content. | [optional]
81
+
**update_custom_metadata** | **bool**| Indicates whether existing custom metadata properties should be updated with the file content | [optional][default to True]
80
82
**update_translation_keys** | **bool**| Pass `false` here to prevent new keys from being created and existing keys updated. | [optional][default to True]
81
83
**update_translations_on_source_match** | **bool**| Update target translations only if the source translations of the uploaded multilingual file match the stored translations. | [optional][default to False]
82
84
**update_descriptions** | **bool**| Existing key descriptions will be updated with the file content. Empty descriptions overwrite existing descriptions. | [optional]
:param str tags: List of tags separated by comma to be associated with the new keys contained in the upload.
55
55
:param bool update_translations: Indicates whether existing translations should be updated with the file content.
56
+
:param bool update_custom_metadata: Indicates whether existing custom metadata properties should be updated with the file content
56
57
:param bool update_translation_keys: Pass `false` here to prevent new keys from being created and existing keys updated.
57
58
:param bool update_translations_on_source_match: Update target translations only if the source translations of the uploaded multilingual file match the stored translations.
58
59
:param bool update_descriptions: Existing key descriptions will be updated with the file content. Empty descriptions overwrite existing descriptions.
:param str tags: List of tags separated by comma to be associated with the new keys contained in the upload.
101
102
:param bool update_translations: Indicates whether existing translations should be updated with the file content.
103
+
:param bool update_custom_metadata: Indicates whether existing custom metadata properties should be updated with the file content
102
104
:param bool update_translation_keys: Pass `false` here to prevent new keys from being created and existing keys updated.
103
105
:param bool update_translations_on_source_match: Update target translations only if the source translations of the uploaded multilingual file match the stored translations.
104
106
:param bool update_descriptions: Existing key descriptions will be updated with the file content. Empty descriptions overwrite existing descriptions.
0 commit comments