Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

CommunityRelationship

Properties

Name Type Description Notes
actions CommunityActions
id str
moderation_state Dict[str, object]
rest_id str

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]