mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
26 lines
445 B
Go
26 lines
445 B
Go
package model
|
|
|
|
import (
|
|
"github.com/zitadel/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{}
|
|
}
|