Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

OnlyOfficeDocumentNewRequest.md

File metadata and controls

30 lines (21 loc) · 1.1 KB

OnlyOfficeDocumentNewRequest

ONLYOFFICE New Document Request

Properties

Name Type Description Notes
extension str [optional]

Example

from formkiq_client.models.only_office_document_new_request import OnlyOfficeDocumentNewRequest

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

# convert the object into a dict
only_office_document_new_request_dict = only_office_document_new_request_instance.to_dict()
# create an instance of OnlyOfficeDocumentNewRequest from a dict
only_office_document_new_request_from_dict = OnlyOfficeDocumentNewRequest.from_dict(only_office_document_new_request_dict)

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