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

CommunityDeleteActionResult

Properties

Name Type Description Notes
typename TypeName
reason str

Example

from twitter_openapi_python_generated.models.community_delete_action_result import CommunityDeleteActionResult

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

# convert the object into a dict
community_delete_action_result_dict = community_delete_action_result_instance.to_dict()
# create an instance of CommunityDeleteActionResult from a dict
community_delete_action_result_from_dict = CommunityDeleteActionResult.from_dict(community_delete_action_result_dict)

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