Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1021 Bytes

File metadata and controls

31 lines (22 loc) · 1021 Bytes

BackendPatch

Properties

Name Type Description Notes
message BackendMessage [optional]
status BackendStatus [optional]
last_heartbeat datetime [optional]

Example

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)

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