Skip to content

Latest commit

History

History
35 lines (26 loc) · 1.1 KB

File metadata and controls

35 lines (26 loc) · 1.1 KB

TopicContext

Properties

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

Example

fromtwitter_openapi_python_generated.models.topic_contextimportTopicContext# TODO update the JSON string belowjson="{}"# create an instance of TopicContext from a JSON stringtopic_context_instance=TopicContext.from_json(json)
# print the JSON string representation of the objectprint(TopicContext.to_json())
# convert the object into a dicttopic_context_dict=topic_context_instance.to_dict()
# create an instance of TopicContext from a dicttopic_context_from_dict=TopicContext.from_dict(topic_context_dict)

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