mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
60 lines
1.1 KiB
Go
60 lines
1.1 KiB
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
|
|
"golang.org/x/text/language"
|
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
)
|
|
|
|
type MessageTextView struct {
|
|
AggregateID string
|
|
MessageTextType string
|
|
Language language.Tag
|
|
Title string
|
|
PreHeader string
|
|
Subject string
|
|
Greeting string
|
|
Text string
|
|
ButtonText string
|
|
FooterText string
|
|
Default bool
|
|
|
|
CreationDate time.Time
|
|
ChangeDate time.Time
|
|
Sequence uint64
|
|
}
|
|
|
|
type MessageTextSearchRequest struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
SortingColumn MessageTextSearchKey
|
|
Asc bool
|
|
Queries []*MessageTextSearchQuery
|
|
}
|
|
|
|
type MessageTextSearchKey int32
|
|
|
|
const (
|
|
MessageTextSearchKeyUnspecified MessageTextSearchKey = iota
|
|
MessageTextSearchKeyAggregateID
|
|
MessageTextSearchKeyMessageTextType
|
|
MessageTextSearchKeyLanguage
|
|
)
|
|
|
|
type MessageTextSearchQuery struct {
|
|
Key MessageTextSearchKey
|
|
Method domain.SearchMethod
|
|
Value interface{}
|
|
}
|
|
|
|
type MessageTextSearchResponse struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
TotalResult uint64
|
|
Result []*MessageTextView
|
|
Sequence uint64
|
|
Timestamp time.Time
|
|
}
|