Name | Type | Description | Notes |
---|---|---|---|
only_office_url | str | URL of the ONLYOFFICE application | [optional] |
token | str | ONLYOFFICE security token | [optional] |
document_type | str | Type of document (https://api.onlyoffice.com/editors/config/) | [optional] |
editor_config | OnlyOfficeEditorConfig | [optional] | |
document | OnlyOfficeConfigDocument | [optional] |
from formkiq_client.models.only_office_config import OnlyOfficeConfig
# TODO update the JSON string below
json = "{}"
# create an instance of OnlyOfficeConfig from a JSON string
only_office_config_instance = OnlyOfficeConfig.from_json(json)
# print the JSON string representation of the object
print(OnlyOfficeConfig.to_json())
# convert the object into a dict
only_office_config_dict = only_office_config_instance.to_dict()
# create an instance of OnlyOfficeConfig from a dict
only_office_config_from_dict = OnlyOfficeConfig.from_dict(only_office_config_dict)