Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1000 Bytes

IPAssignmentList.md

File metadata and controls

30 lines (21 loc) · 1000 Bytes

IPAssignmentList

Properties

Name Type Description Notes
href str [optional]
ip_addresses List[IPAssignment] [optional]

Example

from equinix_metal.models.ip_assignment_list import IPAssignmentList

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

# convert the object into a dict
ip_assignment_list_dict = ip_assignment_list_instance.to_dict()
# create an instance of IPAssignmentList from a dict
ip_assignment_list_form_dict = ip_assignment_list.from_dict(ip_assignment_list_dict)

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