Skip to content

Commit 537d3ab

Browse files
Merge pull request #42 from macnotes/macnotes-add_missing_criteria_operator
Update criteria.py
2 parents 5b18cdb + 6a06ffb commit 537d3ab

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/jamf_pro_sdk/models/classic/criteria.py

+3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ class ClassicCriterionSearchType(str, Enum):
3232
less_than_x_days_ago: str = "less than x days ago"
3333
current: str = "current"
3434
not_current: str = "not current"
35+
member_of: str = "member of"
36+
not_member_of: str = "not member of"
3537
greater_than: str = "greater than"
38+
more_than: str = "more than"
3639
less_than: str = "less than"
3740
greater_than_or_equal: str = "greater than or equal"
3841
less_than_or_equal: str = "less than or equal"

0 commit comments

Comments
 (0)