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

CommunityJoinActionResultUnion

Properties

Name Type Description Notes
typename TypeName
message str
reason str

Example

from twitter_openapi_python_generated.models.community_join_action_result_union import CommunityJoinActionResultUnion

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

# convert the object into a dict
community_join_action_result_union_dict = community_join_action_result_union_instance.to_dict()
# create an instance of CommunityJoinActionResultUnion from a dict
community_join_action_result_union_from_dict = CommunityJoinActionResultUnion.from_dict(community_join_action_result_union_dict)

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