Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1005 Bytes

File metadata and controls

29 lines (20 loc) · 1005 Bytes

FollowResponseData

Properties

Name Type Description Notes
user FollowResponseUser [optional]

Example

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)

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