GrokEntityRef

May 20, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
display_urlstr[optional]
expanded_urlstr[optional]
textstr[optional]
typestr
urlstr[optional]
url_typestr[optional]

Example

from twitter_openapi_python_generated.models.grok_entity_ref import GrokEntityRef

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

# convert the object into a dict
grok_entity_ref_dict = grok_entity_ref_instance.to_dict()
# create an instance of GrokEntityRef from a dict
grok_entity_ref_from_dict = GrokEntityRef.from_dict(grok_entity_ref_dict)

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