Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.39 KB

File metadata and controls

33 lines (24 loc) · 1.39 KB

CommunityActions

Properties

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]

Example

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)

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