Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 862 Bytes

AdditionalIp.md

File metadata and controls

29 lines (20 loc) · 862 Bytes

AdditionalIp

Properties

Name Type Description Notes
v4 IpV4

Example

from pfruck_contabo.models.additional_ip import AdditionalIp

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

# convert the object into a dict
additional_ip_dict = additional_ip_instance.to_dict()
# create an instance of AdditionalIp from a dict
additional_ip_from_dict = AdditionalIp.from_dict(additional_ip_dict)

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