Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.01 KB

File metadata and controls

30 lines (22 loc) · 1.01 KB

AddonsResponse

Properties

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

Example

from timeweb_cloud_api.models.addons_response import AddonsResponse

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

# convert the object into a dict
addons_response_dict = addons_response_instance.to_dict()
# create an instance of AddonsResponse from a dict
addons_response_form_dict = addons_response.from_dict(addons_response_dict)

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