mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
3c07a186fc
* fix: pub sub in new eventstore * fix: todos * fix: todos * fix: todos * fix: todos * fix: todos
26 lines
442 B
Go
26 lines
442 B
Go
package model
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/domain"
|
|
)
|
|
|
|
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 domain.SearchMethod
|
|
Value interface{}
|
|
}
|