Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 836 Bytes

IpV4.md

File metadata and controls

31 lines (22 loc) · 836 Bytes

IpV4

Properties

Name Type Description Notes
ip str IP Address
netmask_cidr int Netmask CIDR
gateway str Gateway

Example

from pfruck_contabo.models.ip_v4 import IpV4

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

# convert the object into a dict
ip_v4_dict = ip_v4_instance.to_dict()
# create an instance of IpV4 from a dict
ip_v4_from_dict = IpV4.from_dict(ip_v4_dict)

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