Name | Type | Description | Notes |
---|
from iblai.models.message_status import MessageStatus
# TODO update the JSON string below
json = "{}"
# create an instance of MessageStatus from a JSON string
message_status_instance = MessageStatus.from_json(json)
# print the JSON string representation of the object
print(MessageStatus.to_json())
# convert the object into a dict
message_status_dict = message_status_instance.to_dict()
# create an instance of MessageStatus from a dict
message_status_from_dict = MessageStatus.from_dict(message_status_dict)