add types contact quiz config, for detection

This commit is contained in:
Pavel 2024-05-07 17:29:19 +03:00
parent 7b58bc46fa
commit 9a2f7a097e

@ -187,6 +187,16 @@ type ContactField struct {
Used bool `json:"used"`
}
type ContactQuizConfig string
const (
TypeContactName ContactQuizConfig = "name"
TypeContactEmail ContactQuizConfig = "email"
TypeContactPhone ContactQuizConfig = "phone"
TypeContactText ContactQuizConfig = "text"
TypeContactAddress ContactQuizConfig = "address"
)
type UTM struct {
/* - айдишник в нашей системе Primary Key*/
ID int64 `json:"ID"`