FollowResponseResult

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
typenameTypeName
timelineFollowTimeline

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]