Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 933 Bytes

File metadata and controls

29 lines (20 loc) · 933 Bytes

BackendMessage

Properties

Name Type Description Notes
content str Content of the message [optional] [default to '']

Example

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]