Name | Type | Description | Notes |
---|---|---|---|
config | OnlyOfficeConfig | [optional] |
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)