Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1018 Bytes

File metadata and controls

29 lines (20 loc) · 1018 Bytes

SuperFollowUserProfile

Properties

Name Type Description Notes
is_active bool

Example

from twitter_openapi_python_generated.models.super_follow_user_profile import SuperFollowUserProfile

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

# convert the object into a dict
super_follow_user_profile_dict = super_follow_user_profile_instance.to_dict()
# create an instance of SuperFollowUserProfile from a dict
super_follow_user_profile_from_dict = SuperFollowUserProfile.from_dict(super_follow_user_profile_dict)

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