Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

CommonReportgroupParameter.md

File metadata and controls

32 lines (23 loc) · 1.24 KB

CommonReportgroupParameter

A parameter of Reportgroup

Properties

Name Type Description Notes
s_reportgroup_parameter_name str The Reportparameter name
s_reportgroup_parameter_value str The Reportparameter value [optional]
a_s_reportgroup_parameter_value List[str] [optional]

Example

from eZmaxApi.models.common_reportgroup_parameter import CommonReportgroupParameter

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

# convert the object into a dict
common_reportgroup_parameter_dict = common_reportgroup_parameter_instance.to_dict()
# create an instance of CommonReportgroupParameter from a dict
common_reportgroup_parameter_from_dict = CommonReportgroupParameter.from_dict(common_reportgroup_parameter_dict)

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