Merge pull request #21 from gwinn/master
add user/bot name & photo for webhook
This commit is contained in:
commit
8be7a95768
27
v1/types.go
27
v1/types.go
@ -138,13 +138,26 @@ type WebhookRequest struct {
|
|||||||
|
|
||||||
// WebhookData request data
|
// WebhookData request data
|
||||||
type WebhookData struct {
|
type WebhookData struct {
|
||||||
ExternalUserID string `json:"external_user_id"`
|
ExternalUserID string `json:"external_user_id"`
|
||||||
ExternalMessageID string `json:"external_message_id,omitempty"`
|
ExternalMessageID string `json:"external_message_id,omitempty"`
|
||||||
ExternalChatID string `json:"external_chat_id"`
|
ExternalChatID string `json:"external_chat_id"`
|
||||||
ChannelID uint64 `json:"channel_id"`
|
ChannelID uint64 `json:"channel_id"`
|
||||||
Content string `json:"content"`
|
Content string `json:"content"`
|
||||||
QuoteExternalID string `json:"quote_external_id,omitempty"`
|
QuoteExternalID string `json:"quote_external_id,omitempty"`
|
||||||
QuoteContent string `json:"quote_content,omitempty"`
|
QuoteContent string `json:"quote_content,omitempty"`
|
||||||
|
User *MessageDataUser `json:"user,omitempty"`
|
||||||
|
Bot *MessageDataBot `json:"bot,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type MessageDataUser struct {
|
||||||
|
FirstName string `json:"first_name"`
|
||||||
|
LastName string `json:"last_name"`
|
||||||
|
Avatar string `json:"avatar"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type MessageDataBot struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
Avatar string `json:"avatar"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// TransportRequestMeta request metadata
|
// TransportRequestMeta request metadata
|
||||||
|
Loading…
Reference in New Issue
Block a user