from okta.models.policy_rule_conditions import PolicyRuleConditions
# TODO update the JSON string below
json = "{}"
# create an instance of PolicyRuleConditions from a JSON string
policy_rule_conditions_instance = PolicyRuleConditions.from_json(json)
# print the JSON string representation of the object
print(PolicyRuleConditions.to_json())
# convert the object into a dict
policy_rule_conditions_dict = policy_rule_conditions_instance.to_dict()
# create an instance of PolicyRuleConditions from a dict
policy_rule_conditions_from_dict = PolicyRuleConditions.from_dict(policy_rule_conditions_dict)