You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generate a new PDF report replacing the cached one
[optional]
timezone_offset
int
[optional]
Example
fromcyperf.models.generate_pdf_report_operationimportGeneratePDFReportOperation# TODO update the JSON string belowjson="{}"# create an instance of GeneratePDFReportOperation from a JSON stringgenerate_pdf_report_operation_instance=GeneratePDFReportOperation.from_json(json)
# print the JSON string representation of the objectprint(GeneratePDFReportOperation.to_json())
# convert the object into a dictgenerate_pdf_report_operation_dict=generate_pdf_report_operation_instance.to_dict()
# create an instance of GeneratePDFReportOperation from a dictgenerate_pdf_report_operation_from_dict=GeneratePDFReportOperation.from_dict(generate_pdf_report_operation_dict)