Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

ExportReportTaskVM

Properties

Name Type Description Notes
export_parameters Dict[str, Optional[str]] [optional]
format ExportFormat [optional]
pages_count int [optional]
t str

Example

from fastreport_cloud_sdk.models.export_report_task_vm import ExportReportTaskVM

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

# convert the object into a dict
export_report_task_vm_dict = export_report_task_vm_instance.to_dict()
# create an instance of ExportReportTaskVM from a dict
export_report_task_vm_form_dict = export_report_task_vm.from_dict(export_report_task_vm_dict)

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