Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 906 Bytes

File metadata and controls

30 lines (22 loc) · 906 Bytes

DnatIn

Properties

Name Type Description Notes
protocol object Протокол
local DnatInLocal
public DnatInPublic

Example

from timeweb_cloud_api.models.dnat_in import DnatIn

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

# convert the object into a dict
dnat_in_dict = dnat_in_instance.to_dict()
# create an instance of DnatIn from a dict
dnat_in_form_dict = dnat_in.from_dict(dnat_in_dict)

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