Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

UnfavoriteTweetResponse

Properties

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

Example

from twitter_openapi_python_generated.models.unfavorite_tweet_response import UnfavoriteTweetResponse

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

# convert the object into a dict
unfavorite_tweet_response_dict = unfavorite_tweet_response_instance.to_dict()
# create an instance of UnfavoriteTweetResponse from a dict
unfavorite_tweet_response_from_dict = UnfavoriteTweetResponse.from_dict(unfavorite_tweet_response_dict)

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