Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.09 KB

File metadata and controls

30 lines (22 loc) · 1.09 KB

DnatRulesResponse

Properties

Name Type Description Notes
response_id object ID запроса [optional]
dnat_rules object Правила проброса портов
meta ComponentsSchemasMeta

Example

from timeweb_cloud_api.models.dnat_rules_response import DnatRulesResponse

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

# convert the object into a dict
dnat_rules_response_dict = dnat_rules_response_instance.to_dict()
# create an instance of DnatRulesResponse from a dict
dnat_rules_response_form_dict = dnat_rules_response.from_dict(dnat_rules_response_dict)

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