Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

DocumentConfig

Properties

Name Type Description Notes
content_types DocumentConfigContentTypes [optional]
retention_and_disposition DocumentConfigRetentionAndDisposition [optional]

Example

from formkiq_client.models.document_config import DocumentConfig

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

# convert the object into a dict
document_config_dict = document_config_instance.to_dict()
# create an instance of DocumentConfig from a dict
document_config_from_dict = DocumentConfig.from_dict(document_config_dict)

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