AuthorCommunityRelationship

May 20, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
community_resultsCommunityResult
rolestr[optional]
user_resultsUserResults[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)

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