Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1008 Bytes

File metadata and controls

31 lines (22 loc) · 1008 Bytes

BirdwatchEntity

Properties

Name Type Description Notes
from_index int
ref BirdwatchEntityRef
to_index int

Example

from twitter_openapi_python_generated.models.birdwatch_entity import BirdwatchEntity

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

# convert the object into a dict
birdwatch_entity_dict = birdwatch_entity_instance.to_dict()
# create an instance of BirdwatchEntity from a dict
birdwatch_entity_from_dict = BirdwatchEntity.from_dict(birdwatch_entity_dict)

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