| Name |
Type |
Description |
Notes |
| blocked_by |
bool |
|
[optional] |
| blocking |
bool |
|
[optional] |
| can_dm |
bool |
|
[optional] |
| can_media_tag |
bool |
|
[optional] |
| created_at |
str |
|
|
| default_profile |
bool |
|
|
| default_profile_image |
bool |
|
|
| description |
str |
|
|
| entities |
Dict[str, object] |
|
|
| fast_followers_count |
int |
|
|
| favourites_count |
int |
|
|
| follow_request_sent |
bool |
|
[optional] |
| followed_by |
bool |
|
[optional] |
| followers_count |
int |
|
|
| following |
bool |
|
[optional] |
| friends_count |
int |
|
|
| has_custom_timelines |
bool |
|
|
| is_translator |
bool |
|
|
| listed_count |
int |
|
|
| location |
str |
|
|
| media_count |
int |
|
|
| muting |
bool |
|
[optional] |
| name |
str |
|
|
| normal_followers_count |
int |
|
|
| notifications |
bool |
|
[optional] |
| pinned_tweet_ids_str |
List[str] |
|
|
| possibly_sensitive |
bool |
|
|
| profile_banner_extensions |
object |
|
[optional] |
| profile_banner_url |
str |
|
[optional] |
| profile_image_extensions |
object |
|
[optional] |
| profile_image_url_https |
str |
|
|
| profile_interstitial_type |
str |
|
|
| protected |
bool |
|
[optional] |
| screen_name |
str |
|
|
| statuses_count |
int |
|
|
| translator_type |
str |
|
|
| url |
str |
|
[optional] |
| verified |
bool |
|
|
| verified_type |
str |
|
[optional] |
| want_retweets |
bool |
|
[optional] |
| withheld_in_countries |
List[str] |
|
[optional] |
from twitter_openapi_python_generated.models.user_legacy import UserLegacy
# TODO update the JSON string below
json = "{}"
# create an instance of UserLegacy from a JSON string
user_legacy_instance = UserLegacy.from_json(json)
# print the JSON string representation of the object
print(UserLegacy.to_json())
# convert the object into a dict
user_legacy_dict = user_legacy_instance.to_dict()
# create an instance of UserLegacy from a dict
user_legacy_from_dict = UserLegacy.from_dict(user_legacy_dict)
[Back to Model list] [Back to API list] [Back to README]