Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 983 Bytes

File metadata and controls

29 lines (21 loc) · 983 Bytes

ClusterResponse

Properties

Name Type Description Notes
response_id object ID запроса [optional]
cluster ClusterOut

Example

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)

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