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) · 914 Bytes

PlanIdName.md

File metadata and controls

31 lines (22 loc) · 914 Bytes

PlanIdName

Properties

Name Type Description Notes
href str [optional]
id str [optional]
name str [optional]

Example

from equinix_metal.models.plan_id_name import PlanIdName

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

# convert the object into a dict
plan_id_name_dict = plan_id_name_instance.to_dict()
# create an instance of PlanIdName from a dict
plan_id_name_form_dict = plan_id_name.from_dict(plan_id_name_dict)

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