Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.09 KB

File metadata and controls

30 lines (22 loc) · 1.09 KB

K8SVersionsResponse

Properties

Name Type Description Notes
response_id object ID запроса [optional]
meta SchemasMeta
k8s_versions object Массив версий k8s

Example

from timeweb_cloud_api.models.k8_s_versions_response import K8SVersionsResponse

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

# convert the object into a dict
k8_s_versions_response_dict = k8_s_versions_response_instance.to_dict()
# create an instance of K8SVersionsResponse from a dict
k8_s_versions_response_form_dict = k8_s_versions_response.from_dict(k8_s_versions_response_dict)

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