A Report containing Reportsections
Name | Type | Description | Notes |
---|---|---|---|
a_obj_reportsection | List[CommonReportsection] |
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)