Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 913 Bytes

File metadata and controls

29 lines (21 loc) · 913 Bytes

AppProvider

Properties

Name Type Description Notes
id object ID провайдера.
type Providers

Example

from timeweb_cloud_api.models.app_provider import AppProvider

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

# convert the object into a dict
app_provider_dict = app_provider_instance.to_dict()
# create an instance of AppProvider from a dict
app_provider_form_dict = app_provider.from_dict(app_provider_dict)

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