@@ -3737,7 +3737,7 @@ null (empty response body)
37373737
37383738## templatesUpdateContentV2
37393739
3740- > templatesUpdateContentV2(id, content )
3740+ > templatesUpdateContentV2(id, fileContent )
37413741
37423742Updates contnet of the template.
37433743
@@ -3768,9 +3768,9 @@ public class Example {
37683768
37693769 TemplatesApi apiInstance = new TemplatesApi (defaultClient);
37703770 String id = " id_example" ; // String | template id
3771- File content = new File (" /path/to/file" ); // File |
3771+ File fileContent = new File (" /path/to/file" ); // File |
37723772 try {
3773- apiInstance. templatesUpdateContentV2(id, content );
3773+ apiInstance. templatesUpdateContentV2(id, fileContent );
37743774 } catch (ApiException e) {
37753775 System . err. println(" Exception when calling TemplatesApi#templatesUpdateContentV2" );
37763776 System . err. println(" Status code: " + e. getCode());
@@ -3788,7 +3788,7 @@ public class Example {
37883788| Name | Type | Description | Notes |
37893789| ------------- | ------------- | ------------- | -------------|
37903790| ** id** | ** String** | template id | |
3791- | ** content ** | ** File** | | |
3791+ | ** fileContent ** | ** File** | | |
37923792
37933793### Return type
37943794
@@ -4144,7 +4144,7 @@ public class Example {
41444144
41454145## templatesUploadFileV2
41464146
4147- > TemplateVM templatesUploadFileV2(id, content , tags, icon)
4147+ > TemplateVM templatesUploadFileV2(id, fileContent , tags, icon)
41484148
41494149Alternative api for upload a file to the specified folder!
41504150
@@ -4177,11 +4177,11 @@ public class Example {
41774177
41784178 TemplatesApi apiInstance = new TemplatesApi (defaultClient);
41794179 String id = " id_example" ; // String | Identifier of folder
4180- File content = new File (" /path/to/file" ); // File |
4180+ File fileContent = new File (" /path/to/file" ); // File |
41814181 List<String > tags = Arrays . asList(); // List<String> |
41824182 File icon = new File (" /path/to/file" ); // File |
41834183 try {
4184- TemplateVM result = apiInstance. templatesUploadFileV2(id, content , tags, icon);
4184+ TemplateVM result = apiInstance. templatesUploadFileV2(id, fileContent , tags, icon);
41854185 System . out. println(result);
41864186 } catch (ApiException e) {
41874187 System . err. println(" Exception when calling TemplatesApi#templatesUploadFileV2" );
@@ -4200,7 +4200,7 @@ public class Example {
42004200| Name | Type | Description | Notes |
42014201| ------------- | ------------- | ------------- | -------------|
42024202| ** id** | ** String** | Identifier of folder | |
4203- | ** content ** | ** File** | | |
4203+ | ** fileContent ** | ** File** | | |
42044204| ** tags** | [ ** List< ; String> ; ** ] ( String.md ) | | [ optional] |
42054205| ** icon** | ** File** | | [ optional] |
42064206
0 commit comments