Name | Type | Description | Notes |
---|---|---|---|
result | FollowResponseResult |
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)