Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1022 Bytes

PerLearnerLastAccess.md

File metadata and controls

29 lines (20 loc) · 1022 Bytes

PerLearnerLastAccess

Properties

Name Type Description Notes
data PerLearnerLastAccessData [optional]

Example

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)

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