CommunityLeaveActionResult

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
typenameTypeName
messagestr
reasonstr

Example

from twitter_openapi_python_generated.models.community_leave_action_result import CommunityLeaveActionResult

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

# convert the object into a dict
community_leave_action_result_dict = community_leave_action_result_instance.to_dict()
# create an instance of CommunityLeaveActionResult from a dict
community_leave_action_result_from_dict = CommunityLeaveActionResult.from_dict(community_leave_action_result_dict)

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