Name | Type | Description | Notes |
---|---|---|---|
id | int | ||
name | str | ||
location | str | ||
backend_type_id | int | ||
status | BackendStatus | ||
last_heartbeat | datetime |
from compute_api_client.models.backend import Backend
# TODO update the JSON string below
json = "{}"
# create an instance of Backend from a JSON string
backend_instance = Backend.from_json(json)
# print the JSON string representation of the object
print Backend.to_json()
# convert the object into a dict
backend_dict = backend_instance.to_dict()
# create an instance of Backend from a dict
backend_form_dict = backend.from_dict(backend_dict)