Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.19 KB

File metadata and controls

32 lines (24 loc) · 1.19 KB

AddonConfigOut

Properties

Name Type Description Notes
id object ID конфигурации дополнения
type object Тип дополнения
version object Версия дополнения
dependencies object Зависимости дополнения
yaml_config object YAML конфигурации дополнения

Example

from timeweb_cloud_api.models.addon_config_out import AddonConfigOut

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

# convert the object into a dict
addon_config_out_dict = addon_config_out_instance.to_dict()
# create an instance of AddonConfigOut from a dict
addon_config_out_form_dict = addon_config_out.from_dict(addon_config_out_dict)

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