| Name | Type | Description | Notes |
|---|---|---|---|
| chat_gpt_api_key | str | ChatGPT Api Key | [optional] |
| max_content_length_bytes | str | Set Maximum Document Content Length in Bytes | [optional] |
| max_documents | str | Set Maximum number of Documents allowed | [optional] |
| max_webhooks | str | Set Maximum number of Webhooks allowed | [optional] |
| notification_email | str | Email address to use for notifications | [optional] |
| document | DocumentConfig | [optional] | |
| ocr | OcrConfig | [optional] | |
| GoogleConfig | [optional] | ||
| docusign | DocusignConfig | [optional] |
from formkiq_client.models.update_configuration_request import UpdateConfigurationRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateConfigurationRequest from a JSON string
update_configuration_request_instance = UpdateConfigurationRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateConfigurationRequest.to_json())
# convert the object into a dict
update_configuration_request_dict = update_configuration_request_instance.to_dict()
# create an instance of UpdateConfigurationRequest from a dict
update_configuration_request_from_dict = UpdateConfigurationRequest.from_dict(update_configuration_request_dict)