Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.32 KB

File metadata and controls

32 lines (24 loc) · 1.32 KB

CreateFileJsonElement

The parameters for creating a file.

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]