The configuration parameters.
| Name | Type | Description | Notes |
|---|---|---|---|
| document | DocumentConfigDto | ||
| document_type | str | The document type. | |
| editor_config | EditorConfigurationDto | ||
| editor_type | EditorType | ||
| editor_url | str | The editor URL. | |
| token | str | The token of the file configuration. | [optional] |
| type | str | The platform type. | [optional] |
| file | FileDtoInteger | ||
| error_message | str | The error message. | [optional] |
| start_filling | bool | Specifies if the file filling has started or not. | [optional] |
| filling_status | bool | The file filling status. | [optional] |
| start_filling_mode | StartFillingMode | [optional] | |
| filling_session_id | str | The file filling session ID. | [optional] |
from docspace_api_sdk.models.configuration_dto_integer import ConfigurationDtoInteger
# TODO update the JSON string below
json = "{}"
# create an instance of ConfigurationDtoInteger from a JSON string
configuration_dto_integer_instance = ConfigurationDtoInteger.from_json(json)
# print the JSON string representation of the object
print(ConfigurationDtoInteger.to_json())
# convert the object into a dict
configuration_dto_integer_dict = configuration_dto_integer_instance.to_dict()
# create an instance of ConfigurationDtoInteger from a dict
configuration_dto_integer_from_dict = ConfigurationDtoInteger.from_dict(configuration_dto_integer_dict)