add user/bot name & photo for webhook
This commit is contained in:
parent
db54931d25
commit
a7d64a9d7d
13
v1/types.go
13
v1/types.go
@ -145,6 +145,19 @@ type WebhookData struct {
|
||||
Content string `json:"content"`
|
||||
QuoteExternalID string `json:"quote_external_id,omitempty"`
|
||||
QuoteContent string `json:"quote_content,omitempty"`
|
||||
User *newMessageDataUser `json:"user,omitempty"`
|
||||
Bot *newMessageDataBot `json:"bot,omitempty"`
|
||||
}
|
||||
|
||||
type newMessageDataUser struct {
|
||||
FirstName string `json:"first_name"`
|
||||
LastName string `json:"last_name"`
|
||||
Avatar string `json:"avatar"`
|
||||
}
|
||||
|
||||
type newMessageDataBot struct {
|
||||
Name string `json:"name"`
|
||||
Avatar string `json:"avatar"`
|
||||
}
|
||||
|
||||
// TransportRequestMeta request metadata
|
||||
|
Loading…
Reference in New Issue
Block a user