Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.4 KB

OpaPolicyAttribute.md

File metadata and controls

35 lines (26 loc) · 1.4 KB

OpaPolicyAttribute

Properties

Name Type Description Notes
key str Attribute Key [optional]
eq OpaPolicyAttributeEq [optional]
gt OpaPolicyAttributeGt [optional]
gte OpaPolicyAttributeGte [optional]
lt OpaPolicyAttributeLt [optional]
lte OpaPolicyAttributeLte [optional]
neq OpaPolicyAttributeNeq [optional]

Example

from formkiq_client.models.opa_policy_attribute import OpaPolicyAttribute

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

# convert the object into a dict
opa_policy_attribute_dict = opa_policy_attribute_instance.to_dict()
# create an instance of OpaPolicyAttribute from a dict
opa_policy_attribute_from_dict = OpaPolicyAttribute.from_dict(opa_policy_attribute_dict)

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