Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1013 Bytes

MessageViewUpdatResponse.md

File metadata and controls

29 lines (20 loc) · 1013 Bytes

MessageViewUpdatResponse

Properties

Name Type Description Notes
detail str

Example

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]