Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1021 Bytes

File metadata and controls

30 lines (21 loc) · 1021 Bytes

NetworkZoneLinks

Properties

Name Type Description Notes
var_self HrefObjectSelfLink [optional]
deactivate HrefObject [optional]

Example

from okta.models.network_zone_links import NetworkZoneLinks

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

# convert the object into a dict
network_zone_links_dict = network_zone_links_instance.to_dict()
# create an instance of NetworkZoneLinks from a dict
network_zone_links_from_dict = NetworkZoneLinks.from_dict(network_zone_links_dict)

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