Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

TimelineTopicContext

Properties

Name Type Description Notes
functionality_type str [optional]
topic TopicContext [optional]
type SocialContextUnionType [optional]

Example

from twitter_openapi_python_generated.models.timeline_topic_context import TimelineTopicContext

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

# convert the object into a dict
timeline_topic_context_dict = timeline_topic_context_instance.to_dict()
# create an instance of TimelineTopicContext from a dict
timeline_topic_context_from_dict = TimelineTopicContext.from_dict(timeline_topic_context_dict)

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