Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

ReportGroupsReport

Report gives report information for the report using the group ID.

Properties

Name Type Description Notes
report_id str The id of the Report. [optional]
report_name str The name of the Report. [optional]

Example

from ibm_gdsc_sdk_saas.models.report_groups_report import ReportGroupsReport

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

# convert the object into a dict
report_groups_report_dict = report_groups_report_instance.to_dict()
# create an instance of ReportGroupsReport from a dict
report_groups_report_from_dict = ReportGroupsReport.from_dict(report_groups_report_dict)

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