Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1008 Bytes

IPAssignmentInput.md

File metadata and controls

31 lines (22 loc) · 1008 Bytes

IPAssignmentInput

Properties

Name Type Description Notes
address str
customdata object [optional]
href str [optional]

Example

from equinix_metal.models.ip_assignment_input import IPAssignmentInput

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

# convert the object into a dict
ip_assignment_input_dict = ip_assignment_input_instance.to_dict()
# create an instance of IPAssignmentInput from a dict
ip_assignment_input_form_dict = ip_assignment_input.from_dict(ip_assignment_input_dict)

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