Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

CommonReportcolumn.md

File metadata and controls

31 lines (22 loc) · 1.07 KB

CommonReportcolumn

A column in a Reportsection

Properties

Name Type Description Notes
obj_reportcellstyle_default CommonReportcellstyle
i_reportcolumn_width int The Reportcolumn width in pixels

Example

from eZmaxApi.models.common_reportcolumn import CommonReportcolumn

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

# convert the object into a dict
common_reportcolumn_dict = common_reportcolumn_instance.to_dict()
# create an instance of CommonReportcolumn from a dict
common_reportcolumn_form_dict = common_reportcolumn.from_dict(common_reportcolumn_dict)

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