Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 833 Bytes

File metadata and controls

29 lines (20 loc) · 833 Bytes

UserValue

Properties

Name Type Description Notes
id_str str

Example

from twitter_openapi_python_generated.models.user_value import UserValue

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

# convert the object into a dict
user_value_dict = user_value_instance.to_dict()
# create an instance of UserValue from a dict
user_value_from_dict = UserValue.from_dict(user_value_dict)

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