Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

PaginatedMentorList.md

File metadata and controls

32 lines (23 loc) · 1.06 KB

PaginatedMentorList

Properties

Name Type Description Notes
count int [optional]
next str [optional]
previous str [optional]
results List[Mentor] [optional]

Example

from iblai.models.paginated_mentor_list import PaginatedMentorList

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

# convert the object into a dict
paginated_mentor_list_dict = paginated_mentor_list_instance.to_dict()
# create an instance of PaginatedMentorList from a dict
paginated_mentor_list_from_dict = PaginatedMentorList.from_dict(paginated_mentor_list_dict)

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