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] |
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)