Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

NetworkZoneAddress

Specifies the value of an IP address expressed using either range or CIDR form.

Properties

Name Type Description Notes
type NetworkZoneAddressType [optional]
value str Value in CIDR/range form depending on the type specified [optional]

Example

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)

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