mirror of
https://github.com/retailcrm/api-client-go.git
synced 2024-11-21 20:36:03 +03:00
fieldalignment fix
This commit is contained in:
parent
a4de6df146
commit
e28631dcb2
12
types.go
12
types.go
@ -1363,19 +1363,19 @@ type ChatCustomerOnline struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type ChatVisitsResponse struct {
|
type ChatVisitsResponse struct {
|
||||||
LastVisit ChatLastVisit `json:"lastVisit"`
|
|
||||||
IP string `json:"ip"`
|
|
||||||
CountVisits uint `json:"countVisits"`
|
|
||||||
Device ChatDevice `json:"device"`
|
|
||||||
UTM *ChatUTM `json:"utm,omitempty"`
|
UTM *ChatUTM `json:"utm,omitempty"`
|
||||||
|
Device ChatDevice `json:"device"`
|
||||||
|
IP string `json:"ip"`
|
||||||
|
LastVisit ChatLastVisit `json:"lastVisit"`
|
||||||
|
CountVisits uint `json:"countVisits"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type ChatLastVisit struct {
|
type ChatLastVisit struct {
|
||||||
Source string `json:"source"`
|
|
||||||
Duration uint `json:"duration"`
|
|
||||||
CreatedAt SystemTime `json:"createdAt"`
|
CreatedAt SystemTime `json:"createdAt"`
|
||||||
EndedAt *SystemTime `json:"endedAt,omitempty"`
|
EndedAt *SystemTime `json:"endedAt,omitempty"`
|
||||||
|
Source string `json:"source"`
|
||||||
Pages []ChatVisitedPage `json:"pages"`
|
Pages []ChatVisitedPage `json:"pages"`
|
||||||
|
Duration uint `json:"duration"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type ChatVisitedPage struct {
|
type ChatVisitedPage struct {
|
||||||
|
Loading…
Reference in New Issue
Block a user