Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 812 Bytes

File metadata and controls

28 lines (20 loc) · 812 Bytes

Providers

Тип провайдера.

Properties

Name Type Description Notes

Example

from timeweb_cloud_api.models.providers import Providers

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

# convert the object into a dict
providers_dict = providers_instance.to_dict()
# create an instance of Providers from a dict
providers_form_dict = providers.from_dict(providers_dict)

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