Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

TimeSpentUpdateResponse.md

File metadata and controls

30 lines (21 loc) · 1.05 KB

TimeSpentUpdateResponse

Properties

Name Type Description Notes
success bool [optional] [default to True]
message object [optional]

Example

from iblai.models.time_spent_update_response import TimeSpentUpdateResponse

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

# convert the object into a dict
time_spent_update_response_dict = time_spent_update_response_instance.to_dict()
# create an instance of TimeSpentUpdateResponse from a dict
time_spent_update_response_from_dict = TimeSpentUpdateResponse.from_dict(time_spent_update_response_dict)

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