Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 941 Bytes

File metadata and controls

31 lines (22 loc) · 941 Bytes

IpRange

A reserved IPv4 addresses pool range, non-addressable by Kowabunga.

Properties

Name Type Description Notes
first str The range's first IP address.
last str The range's last IP address.

Example

from kowabunga.models.ip_range import IpRange

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

# convert the object into a dict
ip_range_dict = ip_range_instance.to_dict()
# create an instance of IpRange from a dict
ip_range_from_dict = IpRange.from_dict(ip_range_dict)

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