amocrm/internal/models/rule.go
2024-04-08 11:20:10 +03:00

25 lines
947 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 Rule struct {
/* - айдишник воронки*/
Pipelineid int `json:"PipelineID"`
/* - айдишник опроса*/
Quizid int `json:"QuizID"`
/* - айдишник этапа*/
Stepid int `json:"StepID"`
/* - список UTM для этого опроса*/
Utms []int `json:"UTMs"`
/* - связь с аккаунтом в интеграции амо*/
Accountid string `json:"AccountID"`
/* - таймштамп создания воронки в нашей системе*/
Createdat int `json:"CreatedAt"`
/* - флаг мягкого удаления*/
Deleted bool `json:"Deleted"`
/* - правила заполнения полей сущностей в амо*/
Fieldsrule Fieldsrule `json:"FieldsRule"`
/* - айдишник в нашей системе*/
ID int `json:"ID"`
/* - айдишник ответственного за сделку*/
Performerid int `json:"PerformerID"`
}