Name | Type | Description | Notes |
---|---|---|---|
data | List[EnrollmentsPerUserData] | [optional] | |
pagination | Pagination |
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)