| Name | Type | Description | Notes |
|---|---|---|---|
| name | object | Имя сети. | [optional] |
| description | object | Описание. | [optional] |
from timeweb_cloud_api.models.update_vpc import UpdateVpc
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateVpc from a JSON string
update_vpc_instance = UpdateVpc.from_json(json)
# print the JSON string representation of the object
print UpdateVpc.to_json()
# convert the object into a dict
update_vpc_dict = update_vpc_instance.to_dict()
# create an instance of UpdateVpc from a dict
update_vpc_form_dict = update_vpc.from_dict(update_vpc_dict)