| Name | Type | Description | Notes |
|---|---|---|---|
| response_id | object | ID запроса | [optional] |
| cluster | ClusterOut |
from timeweb_cloud_api.models.cluster_response import ClusterResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ClusterResponse from a JSON string
cluster_response_instance = ClusterResponse.from_json(json)
# print the JSON string representation of the object
print ClusterResponse.to_json()
# convert the object into a dict
cluster_response_dict = cluster_response_instance.to_dict()
# create an instance of ClusterResponse from a dict
cluster_response_form_dict = cluster_response.from_dict(cluster_response_dict)