Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.06 KB

File metadata and controls

30 lines (22 loc) · 1.06 KB

RouterInParentService

Родительский сервис

Properties

Name Type Description Notes
id object ID сервиса
type object Тип сервиса

Example

from timeweb_cloud_api.models.router_in_parent_service import RouterInParentService

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

# convert the object into a dict
router_in_parent_service_dict = router_in_parent_service_instance.to_dict()
# create an instance of RouterInParentService from a dict
router_in_parent_service_form_dict = router_in_parent_service.from_dict(router_in_parent_service_dict)

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