mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-15 17:13:26 +00:00
24 lines
435 B
Go
24 lines
435 B
Go
|
|
package model
|
||
|
|
|
||
|
|
import "github.com/caos/zitadel/internal/model"
|
||
|
|
|
||
|
|
type GeneralSearchRequest struct {
|
||
|
|
Offset uint64
|
||
|
|
Limit uint64
|
||
|
|
SortingColumn GeneralSearchKey
|
||
|
|
Asc bool
|
||
|
|
Queries []*GeneralSearchQuery
|
||
|
|
}
|
||
|
|
|
||
|
|
type GeneralSearchKey int32
|
||
|
|
|
||
|
|
const (
|
||
|
|
GeneralSearchKeyUnspecified GeneralSearchKey = iota
|
||
|
|
)
|
||
|
|
|
||
|
|
type GeneralSearchQuery struct {
|
||
|
|
Key GeneralSearchKey
|
||
|
|
Method model.SearchMethod
|
||
|
|
Value interface{}
|
||
|
|
}
|