Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.44 KB

AddDocumentGenerateRequest.md

File metadata and controls

33 lines (24 loc) · 1.44 KB

AddDocumentGenerateRequest

Properties

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]

Example

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)

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