@@ -114,7 +114,7 @@ type ComparisonFilter struct {
114114 // - `in`: in
115115 // - `nin`: not in
116116 //
117- // Any of "eq", "ne", "gt", "gte", "lt", "lte".
117+ // Any of "eq", "ne", "gt", "gte", "lt", "lte", "in", "nin" .
118118 Type ComparisonFilterType `json:"type" api:"required"`
119119 // The value to compare against the attribute key; supports string, number, or
120120 // boolean types.
@@ -164,6 +164,8 @@ const (
164164 ComparisonFilterTypeGte ComparisonFilterType = "gte"
165165 ComparisonFilterTypeLt ComparisonFilterType = "lt"
166166 ComparisonFilterTypeLte ComparisonFilterType = "lte"
167+ ComparisonFilterTypeIn ComparisonFilterType = "in"
168+ ComparisonFilterTypeNin ComparisonFilterType = "nin"
167169)
168170
169171// ComparisonFilterValueUnion contains all possible properties and values from
@@ -274,7 +276,7 @@ type ComparisonFilterParam struct {
274276 // - `in`: in
275277 // - `nin`: not in
276278 //
277- // Any of "eq", "ne", "gt", "gte", "lt", "lte".
279+ // Any of "eq", "ne", "gt", "gte", "lt", "lte", "in", "nin" .
278280 Type ComparisonFilterType `json:"type,omitzero" api:"required"`
279281 // The value to compare against the attribute key; supports string, number, or
280282 // boolean types.
0 commit comments