Тип сервиса
| Name | Type | Description | Notes |
|---|
from timeweb_cloud_api.models.service_price_type import ServicePriceType
# TODO update the JSON string below
json = "{}"
# create an instance of ServicePriceType from a JSON string
service_price_type_instance = ServicePriceType.from_json(json)
# print the JSON string representation of the object
print ServicePriceType.to_json()
# convert the object into a dict
service_price_type_dict = service_price_type_instance.to_dict()
# create an instance of ServicePriceType from a dict
service_price_type_form_dict = service_price_type.from_dict(service_price_type_dict)