Skip to content

Commit

Permalink
Merge pull request #42 from macnotes/macnotes-add_missing_criteria_op…
Browse files Browse the repository at this point in the history
…erator

Update criteria.py
  • Loading branch information
brysontyrrell authored Jun 4, 2024
2 parents 5b18cdb + 6a06ffb commit 537d3ab
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/jamf_pro_sdk/models/classic/criteria.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ class ClassicCriterionSearchType(str, Enum):
less_than_x_days_ago: str = "less than x days ago"
current: str = "current"
not_current: str = "not current"
member_of: str = "member of"
not_member_of: str = "not member of"
greater_than: str = "greater than"
more_than: str = "more than"
less_than: str = "less than"
greater_than_or_equal: str = "greater than or equal"
less_than_or_equal: str = "less than or equal"
Expand Down

0 comments on commit 537d3ab

Please sign in to comment.