Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

OnlyOfficeDocumentResponse.md

File metadata and controls

29 lines (20 loc) · 1.07 KB

OnlyOfficeDocumentResponse

Properties

Name Type Description Notes
config OnlyOfficeConfig [optional]

Example

from formkiq_client.models.only_office_document_response import OnlyOfficeDocumentResponse

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

# convert the object into a dict
only_office_document_response_dict = only_office_document_response_instance.to_dict()
# create an instance of OnlyOfficeDocumentResponse from a dict
only_office_document_response_from_dict = OnlyOfficeDocumentResponse.from_dict(only_office_document_response_dict)

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