| Name | Type | Description | Notes |
|---|---|---|---|
| nat_ip | object | IP-адрес, на который включается NAT |
from timeweb_cloud_api.models.nat_in import NatIn
# TODO update the JSON string below
json = "{}"
# create an instance of NatIn from a JSON string
nat_in_instance = NatIn.from_json(json)
# print the JSON string representation of the object
print NatIn.to_json()
# convert the object into a dict
nat_in_dict = nat_in_instance.to_dict()
# create an instance of NatIn from a dict
nat_in_form_dict = nat_in.from_dict(nat_in_dict)