Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1010 Bytes

File metadata and controls

30 lines (21 loc) · 1010 Bytes

FollowResponse

Properties

Name Type Description Notes
data FollowResponseData
errors List[ErrorResponse] [optional]

Example

from twitter_openapi_python_generated.models.follow_response import FollowResponse

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

# convert the object into a dict
follow_response_dict = follow_response_instance.to_dict()
# create an instance of FollowResponse from a dict
follow_response_from_dict = FollowResponse.from_dict(follow_response_dict)

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