Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.29 KB

File metadata and controls

38 lines (29 loc) · 1.29 KB

XPublicMetrics

Properties

Name Type Description Notes
followers_count float [optional]
following_count float [optional]
tweet_count float [optional]
listed_count float [optional]
like_count float [optional]
retweet_count float [optional]
reply_count float [optional]
quote_count float [optional]
bookmark_count float [optional]
impression_count float [optional]

Example

from unifapi.models.x_public_metrics import XPublicMetrics

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

# convert the object into a dict
x_public_metrics_dict = x_public_metrics_instance.to_dict()
# create an instance of XPublicMetrics from a dict
x_public_metrics_from_dict = XPublicMetrics.from_dict(x_public_metrics_dict)

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