Integer

class aiosnow.fields.integer.IntegerQueryable
between(value1: int, value2: int) → aiosnow.query.condition.Condition

Example: impact.between([1, 3])

All records in which the Impact field has one of the following values: 1 - High 2 - Medium 3 - Low

equals(value: int) → aiosnow.query.condition.Condition

Example: reassignment_count.equals(0)

All records in which the Reassignment count is nothing else but 0.

greater_or_equals(value: int) → aiosnow.query.condition.Condition

Example: impact.greater_or_equals(2)

All records in which the Impact field has a value of 2 - Medium or 3 - Low.

greater_than(value: int) → aiosnow.query.condition.Condition

Example: impact.greater_than(2)

All records in which the Impact field has a value of 3 - Low

less_or_equals(value: int) → aiosnow.query.condition.Condition

Example: impact.less_or_equals(2)

All records in which the Impact field has a value of 1 - High or 2 - Medium.

less_than(value: int) → aiosnow.query.condition.Condition

Example: impact.less_than(2)

All records in which the Impact field has a value of 1 - High.

not_equals(value: int) → aiosnow.query.condition.Condition

Example: reassignment_count.not_equals(0)

All records in which the value for the Reassignment count is any number but 0.

class aiosnow.fields.integer.Integer(*, strict: bool = False, **kwargs)