mirror of
https://github.com/retailcrm/mg-bot-api-client-go.git
synced 2024-11-23 13:26:03 +03:00
Add LastUserMessage
field to the Chat
struct
This commit is contained in:
parent
8eb473d7d2
commit
b0e374f88e
@ -351,6 +351,7 @@ type (
|
||||
Customer UserRef `json:"customer"`
|
||||
AuthorID uint64 `json:"author_id"`
|
||||
LastMessage Message `json:"last_message"`
|
||||
LastUserMessage MessageID `json:"last_user_message"`
|
||||
LastActivity string `json:"last_activity"`
|
||||
CreatedAt string `json:"created_at"`
|
||||
UpdatedAt string `json:"updated_at"`
|
||||
@ -470,6 +471,10 @@ type (
|
||||
*AttachmentList
|
||||
}
|
||||
|
||||
MessageID struct {
|
||||
ID uint64 `json:"id"`
|
||||
}
|
||||
|
||||
TextMessage struct {
|
||||
Content string `json:"content"`
|
||||
Quote *QuoteMessage `json:"quote"`
|
||||
@ -631,6 +636,7 @@ type (
|
||||
Customer *UserRef `json:"customer"`
|
||||
AuthorID uint64 `json:"author_id"`
|
||||
LastMessage *Message `json:"last_message"`
|
||||
LastUserMessage *MessageID `json:"last_user_message"`
|
||||
LastActivity string `json:"last_activity"`
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user