Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 933 Bytes

File metadata and controls

31 lines (22 loc) · 933 Bytes

GrokEntity

Properties

Name Type Description Notes
from_index str
ref GrokEntityRef
to_index str

Example

from twitter_openapi_python_generated.models.grok_entity import GrokEntity

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

# convert the object into a dict
grok_entity_dict = grok_entity_instance.to_dict()
# create an instance of GrokEntity from a dict
grok_entity_from_dict = GrokEntity.from_dict(grok_entity_dict)

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