Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1013 Bytes

OnlyOfficeEditorConfig.md

File metadata and controls

29 lines (20 loc) · 1013 Bytes

OnlyOfficeEditorConfig

Properties

Name Type Description Notes
callback_url str [optional]

Example

from formkiq_client.models.only_office_editor_config import OnlyOfficeEditorConfig

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

# convert the object into a dict
only_office_editor_config_dict = only_office_editor_config_instance.to_dict()
# create an instance of OnlyOfficeEditorConfig from a dict
only_office_editor_config_from_dict = OnlyOfficeEditorConfig.from_dict(only_office_editor_config_dict)

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