Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.4 KB

UpdateConfigurationRequest.md

File metadata and controls

33 lines (24 loc) · 1.4 KB

UpdateConfigurationRequest

Properties

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]

Example

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)

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