Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

CommonReportsubsectionpart.md

File metadata and controls

31 lines (22 loc) · 1.17 KB

CommonReportsubsectionpart

A part in the Reportsubsection

Properties

Name Type Description Notes
e_reportsubsectionpart_type str The type of the Reportsubsectionpart
a_obj_reportrow List[CommonReportrow]

Example

from eZmaxApi.models.common_reportsubsectionpart import CommonReportsubsectionpart

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

# convert the object into a dict
common_reportsubsectionpart_dict = common_reportsubsectionpart_instance.to_dict()
# create an instance of CommonReportsubsectionpart from a dict
common_reportsubsectionpart_form_dict = common_reportsubsectionpart.from_dict(common_reportsubsectionpart_dict)

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