CommunityUnpinActionResult
November 1, 2024 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| typename | TypeName |
Example
from twitter_openapi_python_generated.models.community_unpin_action_result import CommunityUnpinActionResult
# TODO update the JSON string below
json = "{}"
# create an instance of CommunityUnpinActionResult from a JSON string
community_unpin_action_result_instance = CommunityUnpinActionResult.from_json(json)
# print the JSON string representation of the object
print(CommunityUnpinActionResult.to_json())
# convert the object into a dict
community_unpin_action_result_dict = community_unpin_action_result_instance.to_dict()
# create an instance of CommunityUnpinActionResult from a dict
community_unpin_action_result_from_dict = CommunityUnpinActionResult.from_dict(community_unpin_action_result_dict)