Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.34 KB

CommonReportsubsection.md

File metadata and controls

32 lines (23 loc) · 1.34 KB

CommonReportsubsection

A Subsection in a Reportsection. It contains 3 Reportsubsectionparts (Header, Body and Footer)

Properties

Name Type Description Notes
obj_reportsubsectionpart_header CommonReportsubsectionpart
obj_reportsubsectionpart_body CommonReportsubsectionpart
obj_reportsubsectionpart_footer CommonReportsubsectionpart

Example

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)

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