Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 991 Bytes

File metadata and controls

29 lines (20 loc) · 991 Bytes

CommunityJoinAction

Properties

Name Type Description Notes
typename TypeName

Example

from twitter_openapi_python_generated.models.community_join_action import CommunityJoinAction

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

# convert the object into a dict
community_join_action_dict = community_join_action_instance.to_dict()
# create an instance of CommunityJoinAction from a dict
community_join_action_from_dict = CommunityJoinAction.from_dict(community_join_action_dict)

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