amocrm/internal/models/getcurrentaccountresp.go

19 lines
671 B
Go
Raw Normal View History

2024-04-04 09:42:40 +00:00
package models
type GetCurrentAccountResp struct {
/* - связь с аккаунтом в квизе*/
Accountid string `json:"AccountID"`
/* - айдишник пользвателя, который подключал интеграцию*/
Amouserid int `json:"AmoUserID"`
/* - связь с аккаунтом в амо*/
Amocrmid int `json:"AmocrmID"`
/* - страна указанная в настройках амо*/
Country string `json:"Country"`
/* - uuid*/
ID string `json:"ID"`
/* - имя аккаунта в амо*/
Name string `json:"Name"`
/* - поддомен организации в амо*/
Subdomain string `json:"Subdomain"`
}