Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

File metadata and controls

31 lines (22 loc) · 1.17 KB

CommunityJoinActionUnavailable

Properties

Name Type Description Notes
typename TypeName
message str
reason str

Example

from twitter_openapi_python_generated.models.community_join_action_unavailable import CommunityJoinActionUnavailable

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

# convert the object into a dict
community_join_action_unavailable_dict = community_join_action_unavailable_instance.to_dict()
# create an instance of CommunityJoinActionUnavailable from a dict
community_join_action_unavailable_from_dict = CommunityJoinActionUnavailable.from_dict(community_join_action_unavailable_dict)

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