Skip to content

Latest commit

History

History
66 lines (57 loc) · 3.11 KB

File metadata and controls

66 lines (57 loc) · 3.11 KB

User

Properties

NameTypeDescriptionNotes
typenameTypeName
affiliates_highlighted_labelDict[str, object][optional]
avatarUserAvatar[optional]
business_accountDict[str, object][optional]
coreUserCore[optional]
creator_subscriptions_countint[optional]
dm_permissionsUserDmPermissions[optional]
has_graduated_accessbool[optional]
has_hidden_likes_on_profilebool[optional]
has_hidden_subscriptions_on_profilebool[optional]
has_nft_avatarbool[optional]
highlights_infoUserHighlightsInfo[optional]
idstr
is_blue_verifiedbool
is_profile_translatablebool[optional]
legacyUserLegacy
legacy_extended_profileUserLegacyExtendedProfile[optional]
locationUserLocation[optional]
media_permissionsUserMediaPermissions[optional]
parody_commentary_fan_labelstr[optional]
premium_gifting_eligiblebool[optional]
privacyUserPrivacy[optional]
professionalUserProfessional[optional]
profile_bioProfileBio[optional]
profile_description_languagestr[optional]
profile_image_shapestr
profile_sort_enabledbool[optional]
relationship_perspectivesUserRelationshipPerspectives[optional]
rest_idstr
super_follow_eligiblebool[optional]
super_followed_bybool[optional]
super_followingbool[optional]
super_follows_user_profileUserProfile[optional]
tipjar_settingsUserTipJarSettings[optional]
user_seed_tweet_countint[optional]
verificationUserVerification[optional]
verification_infoUserVerificationInfo[optional]
verified_user_profilesUserProfile[optional]

Example

fromtwitter_openapi_python_generated.models.userimportUser# TODO update the JSON string belowjson="{}"# create an instance of User from a JSON stringuser_instance=User.from_json(json)
# print the JSON string representation of the objectprint(User.to_json())
# convert the object into a dictuser_dict=user_instance.to_dict()
# create an instance of User from a dictuser_from_dict=User.from_dict(user_dict)

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