amocrm/internal/models/utm.go
2024-04-15 18:44:04 +03:00

20 lines
796 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package models
type UTM struct {
ObjId string `json:"ObjId" bson:"_id"`
/* - название тега в амо*/
Name string `json:"Name" bson:"Name"`
/* - айдишник квиза*/
Quizid int `json:"QuizID" bson:"QuizID"`
/* - айдишник в нашей системе*/
ID string `json:"ID" bson:"ID"`
/* - айдишник кастомного поля в амо*/
Amofieldid int `json:"AmoFieldID" bson:"AmoFieldID"`
/* - таймштамп создания тега в нашей системе*/
Createdat int64 `json:"CreatedAt" bson:"CreatedAt"`
/* - флаг мягкого удаления*/
Deleted bool `json:"Deleted" bson:"Deleted"`
/* - связь с аккаунтом в интеграции амо*/
Accountid int `json:"AccountID" bson:"AccountID"`
}