Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

OpaPolicyAttributeGte.md

File metadata and controls

30 lines (21 loc) · 1.07 KB

OpaPolicyAttributeGte

Attribute greater than and equals to criteria

Properties

Name Type Description Notes
number_value float The value to compare the Attribute Key value to [optional]

Example

from formkiq_client.models.opa_policy_attribute_gte import OpaPolicyAttributeGte

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

# convert the object into a dict
opa_policy_attribute_gte_dict = opa_policy_attribute_gte_instance.to_dict()
# create an instance of OpaPolicyAttributeGte from a dict
opa_policy_attribute_gte_from_dict = OpaPolicyAttributeGte.from_dict(opa_policy_attribute_gte_dict)

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