Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.26 KB

File metadata and controls

33 lines (24 loc) · 1.26 KB

TimelineGeneralContext

Properties

Name Type Description Notes
context_image_urls List[str] [optional]
context_type str [optional]
landing_url SocialContextLandingUrl [optional]
text str [optional]
type SocialContextUnionType [optional]

Example

from twitter_openapi_python_generated.models.timeline_general_context import TimelineGeneralContext

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

# convert the object into a dict
timeline_general_context_dict = timeline_general_context_instance.to_dict()
# create an instance of TimelineGeneralContext from a dict
timeline_general_context_from_dict = TimelineGeneralContext.from_dict(timeline_general_context_dict)

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