Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 893 Bytes

File metadata and controls

32 lines (23 loc) · 893 Bytes

XTrend

Properties

Name Type Description Notes
trend_name str
tweet_count float [optional]
rank float [optional]
query str [optional]

Example

from unifapi.models.x_trend import XTrend

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

# convert the object into a dict
x_trend_dict = x_trend_instance.to_dict()
# create an instance of XTrend from a dict
x_trend_from_dict = XTrend.from_dict(x_trend_dict)

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