Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.27 KB

VideosSpecificCourseData.md

File metadata and controls

34 lines (25 loc) · 1.27 KB

VideosSpecificCourseData

Properties

Name Type Description Notes
display_name str Course name
id str Video Id
duration int Video duration
total_time int Total time spent by users watching
total_users int Total users who have watched this video
average_time float Average time spent per learner

Example

from iblai.models.videos_specific_course_data import VideosSpecificCourseData

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

# convert the object into a dict
videos_specific_course_data_dict = videos_specific_course_data_instance.to_dict()
# create an instance of VideosSpecificCourseData from a dict
videos_specific_course_data_from_dict = VideosSpecificCourseData.from_dict(videos_specific_course_data_dict)

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