Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 910 Bytes

File metadata and controls

28 lines (20 loc) · 910 Bytes

ServicePriceType

Тип сервиса

Properties

Name Type Description Notes

Example

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)

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