Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.01 KB

ImpressionsReportData.md

File metadata and controls

28 lines (20 loc) · 1.01 KB

ImpressionsReportData

Properties

Name Type Description Notes
data List[ImpressionsReport] [optional]

Example

from sparkfly_client.models.impressions_report_data import ImpressionsReportData

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

# convert the object into a dict
impressions_report_data_dict = impressions_report_data_instance.to_dict()
# create an instance of ImpressionsReportData from a dict
impressions_report_data_form_dict = impressions_report_data.from_dict(impressions_report_data_dict)

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