| Name | Type | Description | Notes |
|---|---|---|---|
| user | FollowResponseUser | [optional] |
from twitter_openapi_python_generated.models.follow_response_data import FollowResponseData
# TODO update the JSON string below
json = "{}"
# create an instance of FollowResponseData from a JSON string
follow_response_data_instance = FollowResponseData.from_json(json)
# print the JSON string representation of the object
print(FollowResponseData.to_json())
# convert the object into a dict
follow_response_data_dict = follow_response_data_instance.to_dict()
# create an instance of FollowResponseData from a dict
follow_response_data_from_dict = FollowResponseData.from_dict(follow_response_data_dict)