Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.16 KB

File metadata and controls

31 lines (23 loc) · 1.16 KB

CoEditingConfig

The co-editing configuration parameters.

Properties

Name Type Description Notes
change bool Specifies if the co-editing mode can be changed in the editor interface or not. [optional]
fast bool Specifies if the co-editing mode is fast. [optional]
mode CoEditingConfigMode [optional]

Example

from docspace_api_sdk.models.co_editing_config import CoEditingConfig

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

# convert the object into a dict
co_editing_config_dict = co_editing_config_instance.to_dict()
# create an instance of CoEditingConfig from a dict
co_editing_config_from_dict = CoEditingConfig.from_dict(co_editing_config_dict)

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