| Name |
Type |
Description |
Notes |
| content |
str |
Content of the message |
[optional] [default to ''] |
from compute_api_client.models.backend_message import BackendMessage
# TODO update the JSON string below
json = "{}"
# create an instance of BackendMessage from a JSON string
backend_message_instance = BackendMessage.from_json(json)
# print the JSON string representation of the object
print(BackendMessage.to_json())
# convert the object into a dict
backend_message_dict = backend_message_instance.to_dict()
# create an instance of BackendMessage from a dict
backend_message_from_dict = BackendMessage.from_dict(backend_message_dict)
[Back to Model list] [Back to API list] [Back to README]