Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.4 KB

OnlyOfficeConfigDocument.md

File metadata and controls

32 lines (23 loc) · 1.4 KB

OnlyOfficeConfigDocument

Properties

Name Type Description Notes
url str Defines the absolute URL where the source viewed or edited document is stored [optional]
title str Defines the desired file name for the viewed or edited document [optional]
key str Defines the unique document identifier used by the service to recognize the document [optional]
file_type str Defines the type of the file for the source viewed or edited document [optional]

Example

from formkiq_client.models.only_office_config_document import OnlyOfficeConfigDocument

# TODO update the JSON string below
json = "{}"
# create an instance of OnlyOfficeConfigDocument from a JSON string
only_office_config_document_instance = OnlyOfficeConfigDocument.from_json(json)
# print the JSON string representation of the object
print(OnlyOfficeConfigDocument.to_json())

# convert the object into a dict
only_office_config_document_dict = only_office_config_document_instance.to_dict()
# create an instance of OnlyOfficeConfigDocument from a dict
only_office_config_document_from_dict = OnlyOfficeConfigDocument.from_dict(only_office_config_document_dict)

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