TopicContext

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
descriptionstr[optional]
followingbool[optional]
icon_urlstr[optional]
idstr[optional]
namestr[optional]
not_interestedbool[optional]
topic_idstr[optional]

Example

from twitter_openapi_python_generated.models.topic_context import TopicContext

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

# convert the object into a dict
topic_context_dict = topic_context_instance.to_dict()
# create an instance of TopicContext from a dict
topic_context_from_dict = TopicContext.from_dict(topic_context_dict)

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