| Name | Type | Description | Notes |
|---|---|---|---|
| networks | object | Сети |
from timeweb_cloud_api.models.network_in import NetworkIn
# TODO update the JSON string below
json = "{}"
# create an instance of NetworkIn from a JSON string
network_in_instance = NetworkIn.from_json(json)
# print the JSON string representation of the object
print NetworkIn.to_json()
# convert the object into a dict
network_in_dict = network_in_instance.to_dict()
# create an instance of NetworkIn from a dict
network_in_form_dict = network_in.from_dict(network_in_dict)