CommunityActions

November 23, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
delete_action_resultCommunityDeleteActionResult[optional]
join_action_resultCommunityJoinActionResultUnion[optional]
leave_action_resultCommunityLeaveActionResult[optional]
pin_action_resultCommunityPinActionResult[optional]
unpin_action_resultCommunityUnpinActionResult[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]