Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

FollowResponseResult

Properties

Name Type Description Notes
typename TypeName
timeline FollowTimeline

Example

from twitter_openapi_python_generated.models.follow_response_result import FollowResponseResult

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

# convert the object into a dict
follow_response_result_dict = follow_response_result_instance.to_dict()
# create an instance of FollowResponseResult from a dict
follow_response_result_from_dict = FollowResponseResult.from_dict(follow_response_result_dict)

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