Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.12 KB

SuperFollowsReplyUserResult.md

File metadata and controls

29 lines (20 loc) · 1.12 KB

SuperFollowsReplyUserResult

Properties

Name Type Description Notes
result SuperFollowsReplyUserResultData

Example

from twitter_openapi_python_generated.models.super_follows_reply_user_result import SuperFollowsReplyUserResult

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

# convert the object into a dict
super_follows_reply_user_result_dict = super_follows_reply_user_result_instance.to_dict()
# create an instance of SuperFollowsReplyUserResult from a dict
super_follows_reply_user_result_from_dict = SuperFollowsReplyUserResult.from_dict(super_follows_reply_user_result_dict)

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