Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

GeneratePDFOutputBody

Properties

Name Type Description Notes
already_running bool True when an existing PDF generation is in progress for this analysis and user [optional]

Example

from revengai.models.generate_pdf_output_body import GeneratePDFOutputBody

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

# convert the object into a dict
generate_pdf_output_body_dict = generate_pdf_output_body_instance.to_dict()
# create an instance of GeneratePDFOutputBody from a dict
generate_pdf_output_body_from_dict = GeneratePDFOutputBody.from_dict(generate_pdf_output_body_dict)

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