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
String branch ="branch_example"; // String | specify the branch to use
52
52
String tags ="tags_example"; // String | List of tags separated by comma to be associated with the new keys contained in the upload.
53
53
Boolean updateTranslations =true; // Boolean | Indicates whether existing translations should be updated with the file content.
54
+
Boolean updateCustomMetadata =true; // Boolean | Indicates whether existing custom metadata properties should be updated with the file content
54
55
Boolean updateTranslationKeys =true; // Boolean | Pass `false` here to prevent new keys from being created and existing keys updated.
55
56
Boolean updateTranslationsOnSourceMatch =false; // Boolean | Update target translations only if the source translations of the uploaded multilingual file match the stored translations.
56
57
Boolean updateDescriptions =true; // Boolean | Existing key descriptions will be updated with the file content. Empty descriptions overwrite existing descriptions.
@@ -66,7 +67,7 @@ public class Example {
66
67
Boolean tagOnlyAffectedKeys =false; // Boolean | Indicates whether only keys affected (created or updated) by the upload should be tagged. The default is `false`
67
68
String translationKeyPrefix ="translationKeyPrefix_example"; // String | This prefix will be added to all uploaded translation key names to prevent collisions. Use a meaningful prefix related to your project or file to keep key names organized.
System.err.println("Exception when calling UploadsApi#uploadCreate");
@@ -91,6 +92,7 @@ Name | Type | Description | Notes
91
92
**branch** | **String**| specify the branch to use | [optional]
92
93
**tags** | **String**| List of tags separated by comma to be associated with the new keys contained in the upload. | [optional]
93
94
**updateTranslations** | **Boolean**| Indicates whether existing translations should be updated with the file content. | [optional]
95
+
**updateCustomMetadata** | **Boolean**| Indicates whether existing custom metadata properties should be updated with the file content | [optional][default to true]
94
96
**updateTranslationKeys** | **Boolean**| Pass `false` here to prevent new keys from being created and existing keys updated. | [optional][default to true]
95
97
**updateTranslationsOnSourceMatch** | **Boolean**| Update target translations only if the source translations of the uploaded multilingual file match the stored translations. | [optional][default to false]
96
98
**updateDescriptions** | **Boolean**| Existing key descriptions will be updated with the file content. Empty descriptions overwrite existing descriptions. | [optional]
0 commit comments