Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

File metadata and controls

32 lines (23 loc) · 1.22 KB

StatisticsReportSettings

A container for statistics report settings

Properties

Name Type Description Notes
start_date date Start date for the report
end_date date End date for the report
message_types List[str] Optional list of message types (sms, viber, whatsapp, rcs, hlr) [optional]

Example

from messente_api.models.statistics_report_settings import StatisticsReportSettings

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

# convert the object into a dict
statistics_report_settings_dict = statistics_report_settings_instance.to_dict()
# create an instance of StatisticsReportSettings from a dict
statistics_report_settings_from_dict = StatisticsReportSettings.from_dict(statistics_report_settings_dict)

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