Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

File metadata and controls

32 lines (23 loc) · 1.04 KB

BirdwatchEntityRef

Properties

Name Type Description Notes
text str [optional]
type str
url str [optional]
url_type str [optional]

Example

from twitter_openapi_python_generated.models.birdwatch_entity_ref import BirdwatchEntityRef

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

# convert the object into a dict
birdwatch_entity_ref_dict = birdwatch_entity_ref_instance.to_dict()
# create an instance of BirdwatchEntityRef from a dict
birdwatch_entity_ref_from_dict = BirdwatchEntityRef.from_dict(birdwatch_entity_ref_dict)

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