Skip to content

Latest commit

 

History

History
55 lines (46 loc) · 2.3 KB

File metadata and controls

55 lines (46 loc) · 2.3 KB

UserUnion

Properties

Name Type Description Notes
typename TypeName
affiliates_highlighted_label Dict[str, object] [optional]
business_account Dict[str, object] [optional]
creator_subscriptions_count int [optional]
has_graduated_access bool [optional]
has_hidden_likes_on_profile bool [optional]
has_hidden_subscriptions_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]
parody_commentary_fan_label str [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]
message str [optional]
reason str

Example

from twitter_openapi_python_generated.models.user_union import UserUnion

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

# convert the object into a dict
user_union_dict = user_union_instance.to_dict()
# create an instance of UserUnion from a dict
user_union_from_dict = UserUnion.from_dict(user_union_dict)

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