Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 962 Bytes

MembershipList.md

File metadata and controls

30 lines (21 loc) · 962 Bytes

MembershipList

Properties

Name Type Description Notes
href str [optional]
memberships List[Membership] [optional]

Example

from equinix_metal.models.membership_list import MembershipList

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

# convert the object into a dict
membership_list_dict = membership_list_instance.to_dict()
# create an instance of MembershipList from a dict
membership_list_form_dict = membership_list.from_dict(membership_list_dict)

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