amocrm/internal/models/step.go

23 lines
938 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 Step struct {
/* - айдишник воронки в амо*/
Pipelineid int `json:"PipelineID" bson:"pipelineid"`
/* - связь с аккаунтом в интеграции амо*/
Accountid int `json:"AccountID" bson:"accountid"`
/* - айдишник шага воронки в амо*/
Amoid int `json:"AmoID" bson:"amoid"`
/* - цвет шага в амо*/
Color string `json:"Color" bson:"color"`
/* - таймштамп создания воронки в нашей системе*/
Createdat int64 `json:"CreatedAt" bson:"createdat"`
// время обновления
UpdateAt int64 `json:"UpdateAt" bson:"updateAt"`
/* - флаг мягкого удаления*/
Deleted bool `json:"Deleted" bson:"deleted"`
/* - айдишник в нашей системе*/
ID string `json:"ID" bson:"ID"`
/* - название воронки в амо*/
Name string `json:"Name" bson:"name"`
}