A Subsection in a Reportsection. It contains 3 Reportsubsectionparts (Header, Body and Footer)
Name | Type | Description | Notes |
---|---|---|---|
obj_reportsubsectionpart_header | CommonReportsubsectionpart | ||
obj_reportsubsectionpart_body | CommonReportsubsectionpart | ||
obj_reportsubsectionpart_footer | CommonReportsubsectionpart |
from eZmaxApi.models.common_reportsubsection import CommonReportsubsection
# TODO update the JSON string below
json = "{}"
# create an instance of CommonReportsubsection from a JSON string
common_reportsubsection_instance = CommonReportsubsection.from_json(json)
# print the JSON string representation of the object
print(CommonReportsubsection.to_json())
# convert the object into a dict
common_reportsubsection_dict = common_reportsubsection_instance.to_dict()
# create an instance of CommonReportsubsection from a dict
common_reportsubsection_form_dict = common_reportsubsection.from_dict(common_reportsubsection_dict)