Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.02 KB

File metadata and controls

30 lines (22 loc) · 1.02 KB

PresetsResponse

Properties

Name Type Description Notes
response_id object ID запроса [optional]
meta SchemasMeta
k8s_presets object Массив тарифов k8s

Example

from timeweb_cloud_api.models.presets_response import PresetsResponse

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

# convert the object into a dict
presets_response_dict = presets_response_instance.to_dict()
# create an instance of PresetsResponse from a dict
presets_response_form_dict = presets_response.from_dict(presets_response_dict)

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