Attribute less than and equals to criteria
Name | Type | Description | Notes |
---|---|---|---|
number_value | float | The value to compare the Attribute Key value to | [optional] |
from formkiq_client.models.opa_policy_attribute_lte import OpaPolicyAttributeLte
# TODO update the JSON string below
json = "{}"
# create an instance of OpaPolicyAttributeLte from a JSON string
opa_policy_attribute_lte_instance = OpaPolicyAttributeLte.from_json(json)
# print the JSON string representation of the object
print(OpaPolicyAttributeLte.to_json())
# convert the object into a dict
opa_policy_attribute_lte_dict = opa_policy_attribute_lte_instance.to_dict()
# create an instance of OpaPolicyAttributeLte from a dict
opa_policy_attribute_lte_from_dict = OpaPolicyAttributeLte.from_dict(opa_policy_attribute_lte_dict)