Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

WatchedVideosPerUser.md

File metadata and controls

30 lines (21 loc) · 1.05 KB

WatchedVideosPerUser

Properties

Name Type Description Notes
data List[WatchedVideosPerUserData] [optional]
total int Total rows [optional]

Example

from iblai.models.watched_videos_per_user import WatchedVideosPerUser

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

# convert the object into a dict
watched_videos_per_user_dict = watched_videos_per_user_instance.to_dict()
# create an instance of WatchedVideosPerUser from a dict
watched_videos_per_user_from_dict = WatchedVideosPerUser.from_dict(watched_videos_per_user_dict)

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