Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1018 Bytes

File metadata and controls

30 lines (22 loc) · 1018 Bytes

DnatInLocal

Локальный (приватный) адрес назначения

Properties

Name Type Description Notes
ip object IP-адрес
port object Порт или диапазон портов [optional]

Example

from timeweb_cloud_api.models.dnat_in_local import DnatInLocal

# TODO update the JSON string below
json = "{}"
# create an instance of DnatInLocal from a JSON string
dnat_in_local_instance = DnatInLocal.from_json(json)
# print the JSON string representation of the object
print DnatInLocal.to_json()

# convert the object into a dict
dnat_in_local_dict = dnat_in_local_instance.to_dict()
# create an instance of DnatInLocal from a dict
dnat_in_local_form_dict = dnat_in_local.from_dict(dnat_in_local_dict)

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