Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.12 KB

File metadata and controls

30 lines (22 loc) · 1.12 KB

StaticRoutesResponse

Properties

Name Type Description Notes
response_id object ID запроса [optional]
static_routes object Статические маршруты
meta ComponentsSchemasMeta

Example

from timeweb_cloud_api.models.static_routes_response import StaticRoutesResponse

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

# convert the object into a dict
static_routes_response_dict = static_routes_response_instance.to_dict()
# create an instance of StaticRoutesResponse from a dict
static_routes_response_form_dict = static_routes_response.from_dict(static_routes_response_dict)

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