Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 933 Bytes

File metadata and controls

29 lines (20 loc) · 933 Bytes

RuleConjunction

Properties

Name Type Description Notes
clauses List[RuleDisjunction]

Example

from opal_security.models.rule_conjunction import RuleConjunction

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

# convert the object into a dict
rule_conjunction_dict = rule_conjunction_instance.to_dict()
# create an instance of RuleConjunction from a dict
rule_conjunction_from_dict = RuleConjunction.from_dict(rule_conjunction_dict)

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