Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

PerLearnerLastAccessData.md

File metadata and controls

30 lines (21 loc) · 1.17 KB

PerLearnerLastAccessData

Properties

Name Type Description Notes
course_last_accessed PerLearnerCourseLastAccessData Course last accessed metadata [optional]
last_accessed str Last accessed time [optional]

Example

from iblai.models.per_learner_last_access_data import PerLearnerLastAccessData

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

# convert the object into a dict
per_learner_last_access_data_dict = per_learner_last_access_data_instance.to_dict()
# create an instance of PerLearnerLastAccessData from a dict
per_learner_last_access_data_from_dict = PerLearnerLastAccessData.from_dict(per_learner_last_access_data_dict)

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