AuthorCommunityRelationship
| Name |
Type |
Description |
Notes |
| community_results |
Community |
|
|
| role |
str |
|
[optional] |
| user_results |
UserResults |
|
[optional] |
from twitter_openapi_python_generated.models.author_community_relationship import AuthorCommunityRelationship
# TODO update the JSON string below
json = "{}"
# create an instance of AuthorCommunityRelationship from a JSON string
author_community_relationship_instance = AuthorCommunityRelationship.from_json(json)
# print the JSON string representation of the object
print(AuthorCommunityRelationship.to_json())
# convert the object into a dict
author_community_relationship_dict = author_community_relationship_instance.to_dict()
# create an instance of AuthorCommunityRelationship from a dict
author_community_relationship_from_dict = AuthorCommunityRelationship.from_dict(author_community_relationship_dict)
[Back to Model list] [Back to API list] [Back to README]