The parameters for creating a file.
| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | The file title for creation. | |
| template_id | CreateFileJsonElementTemplateId | [optional] | |
| enable_external_ext | bool | Specifies whether to allow creating a file of an external extension or not. | [optional] |
| form_id | int | The form ID for creation. | [optional] |
from docspace_api_sdk.models.create_file_json_element import CreateFileJsonElement
# TODO update the JSON string below
json = "{}"
# create an instance of CreateFileJsonElement from a JSON string
create_file_json_element_instance = CreateFileJsonElement.from_json(json)
# print the JSON string representation of the object
print(CreateFileJsonElement.to_json())
# convert the object into a dict
create_file_json_element_dict = create_file_json_element_instance.to_dict()
# create an instance of CreateFileJsonElement from a dict
create_file_json_element_from_dict = CreateFileJsonElement.from_dict(create_file_json_element_dict)