Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 831 Bytes

MessageStatus.md

File metadata and controls

28 lines (19 loc) · 831 Bytes

MessageStatus

Properties

Name Type Description Notes

Example

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)

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