mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 18:44:40 +00:00
9892fd92b6
* refactor: drop unused code * refactor: drop unused code
22 lines
420 B
Go
22 lines
420 B
Go
package model
|
|
|
|
import (
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
)
|
|
|
|
type LabelPolicySearchKey int32
|
|
|
|
const (
|
|
LabelPolicySearchKeyUnspecified LabelPolicySearchKey = iota
|
|
LabelPolicySearchKeyAggregateID
|
|
LabelPolicySearchKeyState
|
|
LabelPolicySearchKeyInstanceID
|
|
LabelPolicySearchKeyOwnerRemoved
|
|
)
|
|
|
|
type LabelPolicySearchQuery struct {
|
|
Key LabelPolicySearchKey
|
|
Method domain.SearchMethod
|
|
Value interface{}
|
|
}
|