Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.03 KB

File metadata and controls

29 lines (21 loc) · 1.03 KB

StaticRouteResponse

Properties

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

Example

from timeweb_cloud_api.models.static_route_response import StaticRouteResponse

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

# convert the object into a dict
static_route_response_dict = static_route_response_instance.to_dict()
# create an instance of StaticRouteResponse from a dict
static_route_response_form_dict = static_route_response.from_dict(static_route_response_dict)

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