Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

AudienceAnalytics

The audiences and their member count.

Properties

Name Type Description Notes
audience_id int The ID of the audience. [optional]
members_count int The member count of the audience. [optional]

Example

from talon_one.models.audience_analytics import AudienceAnalytics

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

# convert the object into a dict
audience_analytics_dict = audience_analytics_instance.to_dict()
# create an instance of AudienceAnalytics from a dict
audience_analytics_from_dict = AudienceAnalytics.from_dict(audience_analytics_dict)

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