Skip to content

Commit

Permalink
Merge pull request #48 from macadmins/fix-criteria-missing-member-of
Browse files Browse the repository at this point in the history
Fix missing criteria search types
  • Loading branch information
burnsburns authored Jul 24, 2024
2 parents a8addb6 + 23fe10f commit 24547f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jamf_pro_sdk/models/classic/criteria.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ class ClassicCriterionSearchType(str, Enum):
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: str = "greater 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 24547f5

Please sign in to comment.