Name |
Type |
Description |
Notes |
detail |
str |
|
|
from iblai.models.message_view_updat_response import MessageViewUpdatResponse
# TODO update the JSON string below
json = "{}"
# create an instance of MessageViewUpdatResponse from a JSON string
message_view_updat_response_instance = MessageViewUpdatResponse.from_json(json)
# print the JSON string representation of the object
print(MessageViewUpdatResponse.to_json())
# convert the object into a dict
message_view_updat_response_dict = message_view_updat_response_instance.to_dict()
# create an instance of MessageViewUpdatResponse from a dict
message_view_updat_response_from_dict = MessageViewUpdatResponse.from_dict(message_view_updat_response_dict)
[Back to Model list] [Back to API list] [Back to README]