Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 931 Bytes

IpV41.md

File metadata and controls

33 lines (24 loc) · 931 Bytes

IpV41

Properties

Name Type Description Notes
ip str IP address
gateway str Gateway
netmask_cidr int Netmask CIDR
broadcast str Broadcast address
net str Net address

Example

from pfruck_contabo.models.ip_v41 import IpV41

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

# convert the object into a dict
ip_v41_dict = ip_v41_instance.to_dict()
# create an instance of IpV41 from a dict
ip_v41_from_dict = IpV41.from_dict(ip_v41_dict)

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