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

Latest commit

 

History

History
30 lines (21 loc) · 946 Bytes

PlanSpecsMemory.md

File metadata and controls

30 lines (21 loc) · 946 Bytes

PlanSpecsMemory

Properties

Name Type Description Notes
href str [optional]
total str [optional]

Example

from equinix_metal.models.plan_specs_memory import PlanSpecsMemory

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

# convert the object into a dict
plan_specs_memory_dict = plan_specs_memory_instance.to_dict()
# create an instance of PlanSpecsMemory from a dict
plan_specs_memory_form_dict = plan_specs_memory.from_dict(plan_specs_memory_dict)

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