Specifies the value of an IP address expressed using either range or CIDR form.
| Name | Type | Description | Notes |
|---|---|---|---|
| type | NetworkZoneAddressType | [optional] | |
| value | str | Value in CIDR/range form, depending on the `type` specified | [optional] |
from okta.models.network_zone_address import NetworkZoneAddress
# TODO update the JSON string below
json = "{}"
# create an instance of NetworkZoneAddress from a JSON string
network_zone_address_instance = NetworkZoneAddress.from_json(json)
# print the JSON string representation of the object
print(NetworkZoneAddress.to_json())
# convert the object into a dict
network_zone_address_dict = network_zone_address_instance.to_dict()
# create an instance of NetworkZoneAddress from a dict
network_zone_address_from_dict = NetworkZoneAddress.from_dict(network_zone_address_dict)