CommunityRelationship

November 1, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
actionsCommunityActions
idstr
moderation_stateDict[str, object]
rest_idstr

Example

from twitter_openapi_python_generated.models.community_relationship import CommunityRelationship

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

# convert the object into a dict
community_relationship_dict = community_relationship_instance.to_dict()
# create an instance of CommunityRelationship from a dict
community_relationship_from_dict = CommunityRelationship.from_dict(community_relationship_dict)

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