Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

StatisticsReportSuccess.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

StatisticsReportSuccess

A container for statistics reports

Properties

Name Type Description Notes
reports List[StatisticsReport] Array of report objects

Example

from messente_api.models.statistics_report_success import StatisticsReportSuccess

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

# convert the object into a dict
statistics_report_success_dict = statistics_report_success_instance.to_dict()
# create an instance of StatisticsReportSuccess from a dict
statistics_report_success_from_dict = StatisticsReportSuccess.from_dict(statistics_report_success_dict)

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