mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-04 12:45:15 +00:00
53 lines
989 B
Go
53 lines
989 B
Go
![]() |
package model
|
||
|
|
||
|
import (
|
||
|
"github.com/caos/zitadel/internal/model"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type OrgDomainView struct {
|
||
|
OrgID string
|
||
|
CreationDate time.Time
|
||
|
ChangeDate time.Time
|
||
|
Domain string
|
||
|
Primary bool
|
||
|
Verified bool
|
||
|
}
|
||
|
|
||
|
type OrgDomainSearchRequest struct {
|
||
|
Offset uint64
|
||
|
Limit uint64
|
||
|
SortingColumn OrgDomainSearchKey
|
||
|
Asc bool
|
||
|
Queries []*OrgDomainSearchQuery
|
||
|
}
|
||
|
|
||
|
type OrgDomainSearchKey int32
|
||
|
|
||
|
const (
|
||
|
ORGDOMAINSEARCHKEY_UNSPECIFIED OrgDomainSearchKey = iota
|
||
|
ORGDOMAINSEARCHKEY_DOMAIN
|
||
|
ORGDOMAINSEARCHKEY_ORG_ID
|
||
|
ORGDOMAINSEARCHKEY_VERIFIED
|
||
|
ORGDOMAINSEARCHKEY_PRIMARY
|
||
|
)
|
||
|
|
||
|
type OrgDomainSearchQuery struct {
|
||
|
Key OrgDomainSearchKey
|
||
|
Method model.SearchMethod
|
||
|
Value interface{}
|
||
|
}
|
||
|
|
||
|
type OrgDomainSearchResponse struct {
|
||
|
Offset uint64
|
||
|
Limit uint64
|
||
|
TotalResult uint64
|
||
|
Result []*OrgDomainView
|
||
|
}
|
||
|
|
||
|
func (r *OrgDomainSearchRequest) EnsureLimit(limit uint64) {
|
||
|
if r.Limit == 0 || r.Limit > limit {
|
||
|
r.Limit = limit
|
||
|
}
|
||
|
}
|