UserRelationshipPerspectives
May 20, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| blocked_by | bool | [optional] | |
| blocking | bool | [optional] | |
| followed_by | bool | [optional] | |
| following | bool | [optional] |
Example
from twitter_openapi_python_generated.models.user_relationship_perspectives import UserRelationshipPerspectives
# TODO update the JSON string below
json = "{}"
# create an instance of UserRelationshipPerspectives from a JSON string
user_relationship_perspectives_instance = UserRelationshipPerspectives.from_json(json)
# print the JSON string representation of the object
print(UserRelationshipPerspectives.to_json())
# convert the object into a dict
user_relationship_perspectives_dict = user_relationship_perspectives_instance.to_dict()
# create an instance of UserRelationshipPerspectives from a dict
user_relationship_perspectives_from_dict = UserRelationshipPerspectives.from_dict(user_relationship_perspectives_dict)