ONLYOFFICE New Document Request
Name | Type | Description | Notes |
---|---|---|---|
extension | str | [optional] |
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)