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) · 1.07 KB

MetalGatewayList.md

File metadata and controls

31 lines (22 loc) · 1.07 KB

MetalGatewayList

Properties

Name Type Description Notes
href str [optional]
meta Meta [optional]
metal_gateways List[MetalGatewayListMetalGatewaysInner] [optional]

Example

from equinix_metal.models.metal_gateway_list import MetalGatewayList

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

# convert the object into a dict
metal_gateway_list_dict = metal_gateway_list_instance.to_dict()
# create an instance of MetalGatewayList from a dict
metal_gateway_list_form_dict = metal_gateway_list.from_dict(metal_gateway_list_dict)

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