Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 944 Bytes

File metadata and controls

30 lines (21 loc) · 944 Bytes

RuleClauses

Properties

Name Type Description Notes
when RuleConjunction
unless RuleConjunction [optional]

Example

from opal_security.models.rule_clauses import RuleClauses

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

# convert the object into a dict
rule_clauses_dict = rule_clauses_instance.to_dict()
# create an instance of RuleClauses from a dict
rule_clauses_from_dict = RuleClauses.from_dict(rule_clauses_dict)

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