mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
3cd3a238c2
* fix: all enums same style * fix: rename process to reduce * add some missing enum renaming Co-authored-by: Livio Amstutz <livio.a@gmail.com>
53 lines
983 B
Go
53 lines
983 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 (
|
|
OrgDomainSearchKeyUnspecified OrgDomainSearchKey = iota
|
|
OrgDomainSearchKeyDomain
|
|
OrgDomainSearchKeyOrgID
|
|
OrgDomainSearchKeyVerified
|
|
OrgDomainSearchKeyPrimary
|
|
)
|
|
|
|
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
|
|
}
|
|
}
|