Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 978 Bytes

File metadata and controls

35 lines (26 loc) · 978 Bytes

Hashtag

A TikTok hashtag.

Properties

Name Type Description Notes
id str
name str Hashtag name, without the leading #
description str
video_count int
view_count int
is_commerce bool

Example

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)

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