Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 874 Bytes

File metadata and controls

29 lines (20 loc) · 874 Bytes

UserLocation

Properties

Name Type Description Notes
location str

Example

from twitter_openapi_python_generated.models.user_location import UserLocation

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

# convert the object into a dict
user_location_dict = user_location_instance.to_dict()
# create an instance of UserLocation from a dict
user_location_from_dict = UserLocation.from_dict(user_location_dict)

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