Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 917 Bytes

File metadata and controls

29 lines (21 loc) · 917 Bytes

AppsPresets

Properties

Name Type Description Notes
backend_presets object [optional]
frontend_presets object [optional]

Example

from timeweb_cloud_api.models.apps_presets import AppsPresets

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

# convert the object into a dict
apps_presets_dict = apps_presets_instance.to_dict()
# create an instance of AppsPresets from a dict
apps_presets_form_dict = apps_presets.from_dict(apps_presets_dict)

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