Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 999 Bytes

File metadata and controls

31 lines (22 loc) · 999 Bytes

UserFriends

User Friends

Properties

Name Type Description Notes
pagination PaginationPagination [optional]
data List[UserFriendsAllOfData] [optional]

Example

from jikan_openapi.models.user_friends import UserFriends

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

# convert the object into a dict
user_friends_dict = user_friends_instance.to_dict()
# create an instance of UserFriends from a dict
user_friends_form_dict = user_friends.from_dict(user_friends_dict)

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