UserResultByScreenNameLegacy

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
blocked_bybool[optional]
blockingbool[optional]
followed_bybool[optional]
followingbool[optional]
namestr[optional]
protectedbool[optional]
screen_namestr[optional]

Example

from twitter_openapi_python_generated.models.user_result_by_screen_name_legacy import UserResultByScreenNameLegacy

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

# convert the object into a dict
user_result_by_screen_name_legacy_dict = user_result_by_screen_name_legacy_instance.to_dict()
# create an instance of UserResultByScreenNameLegacy from a dict
user_result_by_screen_name_legacy_from_dict = UserResultByScreenNameLegacy.from_dict(user_result_by_screen_name_legacy_dict)

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