Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

File metadata and controls

30 lines (21 loc) · 1.12 KB

OktaSignOnPolicyRule

Properties

Name Type Description Notes
actions OktaSignOnPolicyRuleActions [optional]
conditions OktaSignOnPolicyRuleConditions [optional]

Example

from okta.models.okta_sign_on_policy_rule import OktaSignOnPolicyRule

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

# convert the object into a dict
okta_sign_on_policy_rule_dict = okta_sign_on_policy_rule_instance.to_dict()
# create an instance of OktaSignOnPolicyRule from a dict
okta_sign_on_policy_rule_from_dict = OktaSignOnPolicyRule.from_dict(okta_sign_on_policy_rule_dict)

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