Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 945 Bytes

CapacityInput.md

File metadata and controls

30 lines (21 loc) · 945 Bytes

CapacityInput

Properties

Name Type Description Notes
href str [optional]
servers List[ServerInfo] [optional]

Example

from equinix_metal.models.capacity_input import CapacityInput

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

# convert the object into a dict
capacity_input_dict = capacity_input_instance.to_dict()
# create an instance of CapacityInput from a dict
capacity_input_form_dict = capacity_input.from_dict(capacity_input_dict)

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