Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.16 KB

File metadata and controls

35 lines (26 loc) · 1.16 KB

ExportReportVM

Properties

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

Example

from fastreport_cloud_sdk.models.export_report_vm import ExportReportVM

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

# convert the object into a dict
export_report_vm_dict = export_report_vm_instance.to_dict()
# create an instance of ExportReportVM from a dict
export_report_vm_form_dict = export_report_vm.from_dict(export_report_vm_dict)

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