AuthorCommunityRelationship
May 20, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| community_results | CommunityResult | ||
| role | str | [optional] | |
| user_results | UserResults | [optional] |
Example
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)