Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 943 Bytes

File metadata and controls

29 lines (20 loc) · 943 Bytes

CommunityResult

Properties

Name Type Description Notes
result CommunityUnion

Example

from twitter_openapi_python_generated.models.community_result import CommunityResult

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

# convert the object into a dict
community_result_dict = community_result_instance.to_dict()
# create an instance of CommunityResult from a dict
community_result_from_dict = CommunityResult.from_dict(community_result_dict)

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