Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.2 KB

TimeSpentUpdateRequest.md

File metadata and controls

34 lines (25 loc) · 1.2 KB

TimeSpentUpdateRequest

Properties

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]

Example

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]