mirror of
https://github.com/retailcrm/mg-bot-api-client-go.git
synced 2025-03-30 11:30:12 +03:00
add responsible to dialog struct
This commit is contained in:
parent
df76ffa83b
commit
188835fec6
1 changed files with 7 additions and 6 deletions
13
v1/types.go
13
v1/types.go
|
@ -399,12 +399,13 @@ type (
|
||||||
}
|
}
|
||||||
|
|
||||||
Dialog struct {
|
Dialog struct {
|
||||||
ID uint64 `json:"id"`
|
ID uint64 `json:"id"`
|
||||||
BeginMessageID *uint64 `json:"begin_message_id"`
|
BeginMessageID *uint64 `json:"begin_message_id"`
|
||||||
EndingMessageID *uint64 `json:"ending_message_id"`
|
EndingMessageID *uint64 `json:"ending_message_id"`
|
||||||
Chat *Chat `json:"chat"`
|
Chat *Chat `json:"chat"`
|
||||||
CreatedAt string `json:"created_at"`
|
Responsible *Responsible `json:"responsible"`
|
||||||
ClosedAt *string `json:"closed_at"`
|
CreatedAt string `json:"created_at"`
|
||||||
|
ClosedAt *string `json:"closed_at"`
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue