Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

PerLearnerCourseVideosWatchedData.md

File metadata and controls

31 lines (22 loc) · 1.19 KB

PerLearnerCourseVideosWatchedData

Properties

Name Type Description Notes
id str Video Id
name str Video Name
watched bool Watch status

Example

from iblai.models.per_learner_course_videos_watched_data import PerLearnerCourseVideosWatchedData

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

# convert the object into a dict
per_learner_course_videos_watched_data_dict = per_learner_course_videos_watched_data_instance.to_dict()
# create an instance of PerLearnerCourseVideosWatchedData from a dict
per_learner_course_videos_watched_data_from_dict = PerLearnerCourseVideosWatchedData.from_dict(per_learner_course_videos_watched_data_dict)

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