A TikTok hashtag.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| name | str | Hashtag name, without the leading # | |
| description | str | ||
| video_count | int | ||
| view_count | int | ||
| is_commerce | bool |
from unifapi.models.hashtag import Hashtag
# TODO update the JSON string below
json = "{}"
# create an instance of Hashtag from a JSON string
hashtag_instance = Hashtag.from_json(json)
# print the JSON string representation of the object
print(Hashtag.to_json())
# convert the object into a dict
hashtag_dict = hashtag_instance.to_dict()
# create an instance of Hashtag from a dict
hashtag_from_dict = Hashtag.from_dict(hashtag_dict)