Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 827 Bytes

File metadata and controls

28 lines (20 loc) · 827 Bytes

NatIn

Properties

Name Type Description Notes
nat_ip object IP-адрес, на который включается NAT

Example

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)

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