Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 999 Bytes

File metadata and controls

33 lines (24 loc) · 999 Bytes

ReportVM

Properties

Name Type Description Notes
template_id str [optional]
report_info ReportInfo [optional]
task_id str [optional]
task_message_id str [optional]
t str

Example

from fastreport_cloud_sdk.models.report_vm import ReportVM

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

# convert the object into a dict
report_vm_dict = report_vm_instance.to_dict()
# create an instance of ReportVM from a dict
report_vm_form_dict = report_vm.from_dict(report_vm_dict)

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