| Name | Type | Description | Notes |
|---|---|---|---|
| trend_name | str | ||
| tweet_count | float | [optional] | |
| rank | float | [optional] | |
| query | str | [optional] |
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)