Safe Haskell | None |
---|---|
Language | Haskell2010 |
This module contains responses from Telegram Bot API
- data GetMeResponse = GetMeResponse {
- user_result :: User
- data MessageResponse = MessageResponse {}
- data ChatActionResponse = ChatActionResponse {}
- data UpdatesResponse = UpdatesResponse {
- update_result :: [Update]
- data FileResponse = FileResponse {
- file_result :: File
- data UserProfilePhotosResponse = UserProfilePhotosResponse {}
- data SetWebhookResponse = SetWebhookResponse {}
- data InlineQueryResponse = InlineQueryResponse {
- query_result :: Bool
- data CallbackQueryResponse = CallbackQueryResponse {}
- data KickChatMemberResponse = KickChatMemberResponse {
- kick_result :: Bool
- data LeaveChatResponse = LeaveChatResponse {
- leave_result :: Bool
- data UnbanChatMemberResponse = UnbanChatMemberResponse {
- unban_result :: Bool
- data GetChatResponse = GetChatResponse {
- chat_result :: Chat
- data GetChatAdministratorsResponse = GetChatAdministratorsResponse {
- ca_result :: [ChatMember]
- data GetChatMembersCountResponse = GetChatMembersCountResponse {
- cmc_result :: Int
- data GetChatMemberResponse = GetChatMemberResponse {
- gcm_result :: Int
Types
data GetMeResponse Source #
This object represents getMe
response
data MessageResponse Source #
This object represents message response
data ChatActionResponse Source #
This object represents sendChatAction
response
data UpdatesResponse Source #
This object represents getUpdates
response
data FileResponse Source #
This object represents file response
data UserProfilePhotosResponse Source #
This object represents user profile photos response
data SetWebhookResponse Source #
This object represents setWebhook
response
data InlineQueryResponse Source #
This object represents answerInlineQuery
response
data CallbackQueryResponse Source #
This object represents answerCallbackQuery
response
data KickChatMemberResponse Source #
This object represents kickChatMember
response
data LeaveChatResponse Source #
data UnbanChatMemberResponse Source #
This object represents unbanChatMember
response
data GetChatResponse Source #