Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 2.03 KB

File metadata and controls

51 lines (42 loc) · 2.03 KB

User

Properties

Name Type Description Notes
typename TypeName
affiliates_highlighted_label Dict[str, object]
business_account Dict[str, object] [optional]
creator_subscriptions_count int [optional]
has_graduated_access bool [optional]
has_hidden_likes_on_profile bool [optional]
has_nft_avatar bool [optional]
highlights_info UserHighlightsInfo [optional]
id str
is_blue_verified bool
is_profile_translatable bool [optional]
legacy UserLegacy
legacy_extended_profile UserLegacyExtendedProfile [optional]
premium_gifting_eligible bool [optional]
professional UserProfessional [optional]
profile_image_shape str
rest_id str
super_follow_eligible bool [optional]
super_followed_by bool [optional]
super_following bool [optional]
tipjar_settings UserTipJarSettings [optional]
user_seed_tweet_count int [optional]
verification_info UserVerificationInfo [optional]

Example

from twitter_openapi_python_generated.models.user import User

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

# convert the object into a dict
user_dict = user_instance.to_dict()
# create an instance of User from a dict
user_from_dict = User.from_dict(user_dict)

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