Name |
Type |
Description |
Notes |
timestamp |
datetime |
Time when the event occurred, ensure it is UTC (ISO 8601 format) |
|
course_id |
str |
|
[optional] |
block_id |
str |
|
[optional] |
count |
int |
|
|
url |
str |
|
|
metadata |
object |
|
[optional] |
from iblai.models.time_spent_update_request import TimeSpentUpdateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of TimeSpentUpdateRequest from a JSON string
time_spent_update_request_instance = TimeSpentUpdateRequest.from_json(json)
# print the JSON string representation of the object
print(TimeSpentUpdateRequest.to_json())
# convert the object into a dict
time_spent_update_request_dict = time_spent_update_request_instance.to_dict()
# create an instance of TimeSpentUpdateRequest from a dict
time_spent_update_request_from_dict = TimeSpentUpdateRequest.from_dict(time_spent_update_request_dict)
[Back to Model list] [Back to API list] [Back to README]