Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 967 Bytes

File metadata and controls

29 lines (21 loc) · 967 Bytes

RouterResponse

Properties

Name Type Description Notes
response_id object ID запроса [optional]
router RouterOut

Example

from timeweb_cloud_api.models.router_response import RouterResponse

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

# convert the object into a dict
router_response_dict = router_response_instance.to_dict()
# create an instance of RouterResponse from a dict
router_response_form_dict = router_response.from_dict(router_response_dict)

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