Name | Type | Description | Notes |
---|---|---|---|
href | str | [optional] | |
meta | Meta | [optional] | |
routes | List[VrfRoute] | [optional] |
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)