A reserved IPv4 addresses pool range, non-addressable by Kowabunga.
| Name | Type | Description | Notes |
|---|---|---|---|
| first | str | The range's first IP address. | |
| last | str | The range's last IP address. |
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)