Name | Type | Description | Notes |
---|---|---|---|
data | PerLearnerLastAccessData | [optional] |
from iblai.models.per_learner_last_access import PerLearnerLastAccess
# TODO update the JSON string below
json = "{}"
# create an instance of PerLearnerLastAccess from a JSON string
per_learner_last_access_instance = PerLearnerLastAccess.from_json(json)
# print the JSON string representation of the object
print(PerLearnerLastAccess.to_json())
# convert the object into a dict
per_learner_last_access_dict = per_learner_last_access_instance.to_dict()
# create an instance of PerLearnerLastAccess from a dict
per_learner_last_access_from_dict = PerLearnerLastAccess.from_dict(per_learner_last_access_dict)