Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Latest commit

 

History

History
31 lines (22 loc) · 982 Bytes

VrfRouteList.md

File metadata and controls

31 lines (22 loc) · 982 Bytes

VrfRouteList

Properties

Name Type Description Notes
href str [optional]
meta Meta [optional]
routes List[VrfRoute] [optional]

Example

from equinix_metal.models.vrf_route_list import VrfRouteList

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

# convert the object into a dict
vrf_route_list_dict = vrf_route_list_instance.to_dict()
# create an instance of VrfRouteList from a dict
vrf_route_list_form_dict = vrf_route_list.from_dict(vrf_route_list_dict)

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