Name | Type | Description | Notes |
---|---|---|---|
result | CommunityData |
from twitter_openapi_python_generated.models.community import Community
# TODO update the JSON string below
json = "{}"
# create an instance of Community from a JSON string
community_instance = Community.from_json(json)
# print the JSON string representation of the object
print(Community.to_json())
# convert the object into a dict
community_dict = community_instance.to_dict()
# create an instance of Community from a dict
community_from_dict = Community.from_dict(community_dict)