Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.05 KB

File metadata and controls

30 lines (22 loc) · 1.05 KB

ClustersResponse

Properties

Name Type Description Notes
response_id object ID запроса [optional]
meta SchemasMeta
clusters object Массив объектов Кластер

Example

from timeweb_cloud_api.models.clusters_response import ClustersResponse

# TODO update the JSON string below
json = "{}"
# create an instance of ClustersResponse from a JSON string
clusters_response_instance = ClustersResponse.from_json(json)
# print the JSON string representation of the object
print ClustersResponse.to_json()

# convert the object into a dict
clusters_response_dict = clusters_response_instance.to_dict()
# create an instance of ClustersResponse from a dict
clusters_response_form_dict = clusters_response.from_dict(clusters_response_dict)

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