Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 946 Bytes

CommonReport.md

File metadata and controls

30 lines (21 loc) · 946 Bytes

CommonReport

A Report containing Reportsections

Properties

Name Type Description Notes
a_obj_reportsection List[CommonReportsection]

Example

from eZmaxApi.models.common_report import CommonReport

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

# convert the object into a dict
common_report_dict = common_report_instance.to_dict()
# create an instance of CommonReport from a dict
common_report_form_dict = common_report.from_dict(common_report_dict)

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