Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1 KB

File metadata and controls

29 lines (21 loc) · 1 KB

AvailableFrameworks

Properties

Name Type Description Notes
frontend_frameworks object [optional]
backend_frameworks object [optional]

Example

from timeweb_cloud_api.models.available_frameworks import AvailableFrameworks

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

# convert the object into a dict
available_frameworks_dict = available_frameworks_instance.to_dict()
# create an instance of AvailableFrameworks from a dict
available_frameworks_form_dict = available_frameworks.from_dict(available_frameworks_dict)

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