mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
3cd3a238c2
* fix: all enums same style * fix: rename process to reduce * add some missing enum renaming Co-authored-by: Livio Amstutz <livio.a@gmail.com>
18 lines
349 B
Go
18 lines
349 B
Go
package model
|
|
|
|
type SearchMethod int32
|
|
|
|
const (
|
|
SearchMethodEquals SearchMethod = iota
|
|
SearchMethodStartsWith
|
|
SearchMethodContains
|
|
SearchMethodEqualsIgnoreCase
|
|
SearchMethodStartsWithIgnoreCase
|
|
SearchMethodContainsIgnoreCase
|
|
SearchMethodNotEquals
|
|
SearchMethodGreaterThan
|
|
SearchMethodLessThan
|
|
SearchMethodIsOneOf
|
|
SearchMethodListContains
|
|
)
|