Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1000 Bytes

File metadata and controls

29 lines (20 loc) · 1000 Bytes

FollowResponseUser

Properties

Name Type Description Notes
result FollowResponseResult

Example

from twitter_openapi_python_generated.models.follow_response_user import FollowResponseUser

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

# convert the object into a dict
follow_response_user_dict = follow_response_user_instance.to_dict()
# create an instance of FollowResponseUser from a dict
follow_response_user_from_dict = FollowResponseUser.from_dict(follow_response_user_dict)

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