| Name | Type | Description | Notes |
|---|---|---|---|
| message | BackendMessage | [optional] | |
| status | BackendStatus | [optional] | |
| last_heartbeat | datetime | [optional] |
from compute_api_client.models.backend_patch import BackendPatch
# TODO update the JSON string below
json = "{}"
# create an instance of BackendPatch from a JSON string
backend_patch_instance = BackendPatch.from_json(json)
# print the JSON string representation of the object
print(BackendPatch.to_json())
# convert the object into a dict
backend_patch_dict = backend_patch_instance.to_dict()
# create an instance of BackendPatch from a dict
backend_patch_from_dict = BackendPatch.from_dict(backend_patch_dict)