Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

EnrollmentsPerUser.md

File metadata and controls

30 lines (21 loc) · 1.02 KB

EnrollmentsPerUser

Properties

Name Type Description Notes
data List[EnrollmentsPerUserData] [optional]
pagination Pagination

Example

from iblai.models.enrollments_per_user import EnrollmentsPerUser

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

# convert the object into a dict
enrollments_per_user_dict = enrollments_per_user_instance.to_dict()
# create an instance of EnrollmentsPerUser from a dict
enrollments_per_user_from_dict = EnrollmentsPerUser.from_dict(enrollments_per_user_dict)

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