Name | Type | Description | Notes |
---|---|---|---|
locale | Locale | [optional] | |
datasources | List[DocumentGenerateDataSource] | List of data sources | [optional] |
output_type | DocumentGenerateOutputType | [optional] | |
save_as_document_id | str | Save the generated document with a specific documentId | [optional] |
path | str | The path of the generated document | [optional] |
from formkiq_client.models.add_document_generate_request import AddDocumentGenerateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of AddDocumentGenerateRequest from a JSON string
add_document_generate_request_instance = AddDocumentGenerateRequest.from_json(json)
# print the JSON string representation of the object
print(AddDocumentGenerateRequest.to_json())
# convert the object into a dict
add_document_generate_request_dict = add_document_generate_request_instance.to_dict()
# create an instance of AddDocumentGenerateRequest from a dict
add_document_generate_request_from_dict = AddDocumentGenerateRequest.from_dict(add_document_generate_request_dict)