Name | Type | Description | Notes |
---|---|---|---|
delete_action_result | CommunityDeleteActionResult | [optional] | |
join_action_result | CommunityJoinActionResult | [optional] | |
leave_action_result | CommunityLeaveActionResult | [optional] | |
pin_action_result | CommunityPinActionResult | [optional] | |
unpin_action_result | CommunityUnpinActionResult | [optional] |
from twitter_openapi_python_generated.models.community_actions import CommunityActions
# TODO update the JSON string below
json = "{}"
# create an instance of CommunityActions from a JSON string
community_actions_instance = CommunityActions.from_json(json)
# print the JSON string representation of the object
print(CommunityActions.to_json())
# convert the object into a dict
community_actions_dict = community_actions_instance.to_dict()
# create an instance of CommunityActions from a dict
community_actions_from_dict = CommunityActions.from_dict(community_actions_dict)