TimelineGeneralContext

May 7, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
context_image_urlsList[str][optional]
context_typestr[optional]
landing_urlSocialContextLandingUrl[optional]
textstr[optional]
typeSocialContextUnionType[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]