1
0
mirror of synced 2024-11-22 04:56:06 +03:00

export types

This commit is contained in:
Alex Lushpai 2018-08-28 16:44:11 +03:00
parent a7d64a9d7d
commit 349cf3561d

View File

@ -138,24 +138,24 @@ type WebhookRequest struct {
// WebhookData request data
type WebhookData struct {
ExternalUserID string `json:"external_user_id"`
ExternalMessageID string `json:"external_message_id,omitempty"`
ExternalChatID string `json:"external_chat_id"`
ChannelID uint64 `json:"channel_id"`
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"`
ExternalUserID string `json:"external_user_id"`
ExternalMessageID string `json:"external_message_id,omitempty"`
ExternalChatID string `json:"external_chat_id"`
ChannelID uint64 `json:"channel_id"`
Content string `json:"content"`
QuoteExternalID string `json:"quote_external_id,omitempty"`
QuoteContent string `json:"quote_content,omitempty"`
User *MessageDataUser `json:"user,omitempty"`
Bot *MessageDataBot `json:"bot,omitempty"`
}
type newMessageDataUser struct {
type MessageDataUser struct {
FirstName string `json:"first_name"`
LastName string `json:"last_name"`
Avatar string `json:"avatar"`
}
type newMessageDataBot struct {
type MessageDataBot struct {
Name string `json:"name"`
Avatar string `json:"avatar"`
}