Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.2 KB

File metadata and controls

33 lines (24 loc) · 1.2 KB

PolicyLinks

Properties

Name Type Description Notes
var_self HrefObjectSelfLink [optional]
activate HrefObjectActivateLink [optional]
deactivate HrefObjectDeactivateLink [optional]
rules HrefObjectRulesLink [optional]
mappings HrefObjectMappingsLink [optional]

Example

from okta.models.policy_links import PolicyLinks

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

# convert the object into a dict
policy_links_dict = policy_links_instance.to_dict()
# create an instance of PolicyLinks from a dict
policy_links_from_dict = PolicyLinks.from_dict(policy_links_dict)

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