@@ -105,6 +105,90 @@ export interface ProjectDetails {
105105 * @memberof ProjectDetails
106106 */
107107 sharesTranslationMemory ?: boolean ;
108+ /**
109+ *
110+ * @type {boolean }
111+ * @memberof ProjectDetails
112+ */
113+ machineTranslationEnabled ?: boolean ;
114+ /**
115+ *
116+ * @type {boolean }
117+ * @memberof ProjectDetails
118+ */
119+ zeroPluralFormEnabled ?: boolean ;
120+ /**
121+ *
122+ * @type {boolean }
123+ * @memberof ProjectDetails
124+ */
125+ enableAllDataTypeTranslationKeysForTranslators ?: boolean ;
126+ /**
127+ *
128+ * @type {boolean }
129+ * @memberof ProjectDetails
130+ */
131+ enableIcuMessageFormat ?: boolean ;
132+ /**
133+ *
134+ * @type {boolean }
135+ * @memberof ProjectDetails
136+ */
137+ enableBranching ?: boolean ;
138+ /**
139+ *
140+ * @type {boolean }
141+ * @memberof ProjectDetails
142+ */
143+ protectMasterBranch ?: boolean ;
144+ /**
145+ *
146+ * @type {boolean }
147+ * @memberof ProjectDetails
148+ */
149+ autotranslateEnabled ?: boolean ;
150+ /**
151+ *
152+ * @type {boolean }
153+ * @memberof ProjectDetails
154+ */
155+ autotranslateCheckNewTranslationKeys ?: boolean ;
156+ /**
157+ *
158+ * @type {boolean }
159+ * @memberof ProjectDetails
160+ */
161+ autotranslateCheckNewUploads ?: boolean ;
162+ /**
163+ *
164+ * @type {boolean }
165+ * @memberof ProjectDetails
166+ */
167+ autotranslateCheckNewLocales ?: boolean ;
168+ /**
169+ *
170+ * @type {boolean }
171+ * @memberof ProjectDetails
172+ */
173+ autotranslateMarkAsUnverified ?: boolean ;
174+ /**
175+ *
176+ * @type {boolean }
177+ * @memberof ProjectDetails
178+ */
179+ autotranslateUseMachineTranslation ?: boolean ;
180+ /**
181+ *
182+ * @type {boolean }
183+ * @memberof ProjectDetails
184+ */
185+ autotranslateUseTranslationMemory ?: boolean ;
186+ /**
187+ *
188+ * @type {string }
189+ * @memberof ProjectDetails
190+ */
191+ defaultEncoding ?: string ;
108192}
109193
110194export function ProjectDetailsFromJSON ( json : any ) : ProjectDetails {
@@ -129,6 +213,20 @@ export function ProjectDetailsFromJSONTyped(json: any, ignoreDiscriminator: bool
129213 'createdAt' : ! exists ( json , 'created_at' ) ? undefined : ( new Date ( json [ 'created_at' ] ) ) ,
130214 'updatedAt' : ! exists ( json , 'updated_at' ) ? undefined : ( new Date ( json [ 'updated_at' ] ) ) ,
131215 'sharesTranslationMemory' : ! exists ( json , 'shares_translation_memory' ) ? undefined : json [ 'shares_translation_memory' ] ,
216+ 'machineTranslationEnabled' : ! exists ( json , 'machine_translation_enabled' ) ? undefined : json [ 'machine_translation_enabled' ] ,
217+ 'zeroPluralFormEnabled' : ! exists ( json , 'zero_plural_form_enabled' ) ? undefined : json [ 'zero_plural_form_enabled' ] ,
218+ 'enableAllDataTypeTranslationKeysForTranslators' : ! exists ( json , 'enable_all_data_type_translation_keys_for_translators' ) ? undefined : json [ 'enable_all_data_type_translation_keys_for_translators' ] ,
219+ 'enableIcuMessageFormat' : ! exists ( json , 'enable_icu_message_format' ) ? undefined : json [ 'enable_icu_message_format' ] ,
220+ 'enableBranching' : ! exists ( json , 'enable_branching' ) ? undefined : json [ 'enable_branching' ] ,
221+ 'protectMasterBranch' : ! exists ( json , 'protect_master_branch' ) ? undefined : json [ 'protect_master_branch' ] ,
222+ 'autotranslateEnabled' : ! exists ( json , 'autotranslate_enabled' ) ? undefined : json [ 'autotranslate_enabled' ] ,
223+ 'autotranslateCheckNewTranslationKeys' : ! exists ( json , 'autotranslate_check_new_translation_keys' ) ? undefined : json [ 'autotranslate_check_new_translation_keys' ] ,
224+ 'autotranslateCheckNewUploads' : ! exists ( json , 'autotranslate_check_new_uploads' ) ? undefined : json [ 'autotranslate_check_new_uploads' ] ,
225+ 'autotranslateCheckNewLocales' : ! exists ( json , 'autotranslate_check_new_locales' ) ? undefined : json [ 'autotranslate_check_new_locales' ] ,
226+ 'autotranslateMarkAsUnverified' : ! exists ( json , 'autotranslate_mark_as_unverified' ) ? undefined : json [ 'autotranslate_mark_as_unverified' ] ,
227+ 'autotranslateUseMachineTranslation' : ! exists ( json , 'autotranslate_use_machine_translation' ) ? undefined : json [ 'autotranslate_use_machine_translation' ] ,
228+ 'autotranslateUseTranslationMemory' : ! exists ( json , 'autotranslate_use_translation_memory' ) ? undefined : json [ 'autotranslate_use_translation_memory' ] ,
229+ 'defaultEncoding' : ! exists ( json , 'default_encoding' ) ? undefined : json [ 'default_encoding' ] ,
132230 } ;
133231}
134232
@@ -153,6 +251,20 @@ export function ProjectDetailsToJSON(value?: ProjectDetails | null): any {
153251 'created_at' : value . createdAt === undefined ? undefined : ( value . createdAt . toISOString ( ) ) ,
154252 'updated_at' : value . updatedAt === undefined ? undefined : ( value . updatedAt . toISOString ( ) ) ,
155253 'shares_translation_memory' : value . sharesTranslationMemory ,
254+ 'machine_translation_enabled' : value . machineTranslationEnabled ,
255+ 'zero_plural_form_enabled' : value . zeroPluralFormEnabled ,
256+ 'enable_all_data_type_translation_keys_for_translators' : value . enableAllDataTypeTranslationKeysForTranslators ,
257+ 'enable_icu_message_format' : value . enableIcuMessageFormat ,
258+ 'enable_branching' : value . enableBranching ,
259+ 'protect_master_branch' : value . protectMasterBranch ,
260+ 'autotranslate_enabled' : value . autotranslateEnabled ,
261+ 'autotranslate_check_new_translation_keys' : value . autotranslateCheckNewTranslationKeys ,
262+ 'autotranslate_check_new_uploads' : value . autotranslateCheckNewUploads ,
263+ 'autotranslate_check_new_locales' : value . autotranslateCheckNewLocales ,
264+ 'autotranslate_mark_as_unverified' : value . autotranslateMarkAsUnverified ,
265+ 'autotranslate_use_machine_translation' : value . autotranslateUseMachineTranslation ,
266+ 'autotranslate_use_translation_memory' : value . autotranslateUseTranslationMemory ,
267+ 'default_encoding' : value . defaultEncoding ,
156268 } ;
157269}
158270
0 commit comments