Safe Haskell | None |
---|---|
Language | Haskell2010 |
Documentation
type GetUserProfilePhotos = Base :> ("getUserProfilePhotos" :> (QueryR "user_id" Integer :> (QueryParam "offset" Integer :> (QueryParam "limit" Integer :> Get '[JSON] (ReqResult UserProfilePhotos))))) Source #
type GetFile = Base :> ("getFile" :> (QueryR "file_id" Text :> Get '[JSON] (ReqResult File))) Source #
type GetChat = Base :> ("getChat" :> (QueryR "chat_id" ChatId :> Get '[JSON] (ReqResult Chat))) Source #
type GetChatAdministrators = Base :> ("getChatAdministrators" :> (QueryR "chat_id" ChatId :> Get '[JSON] (ReqResult [ChatMember]))) Source #
type GetChatMembersCount = Base :> ("getChatMembersCount" :> (QueryR "chat_id" ChatId :> Get '[JSON] (ReqResult Integer))) Source #
type GetChatMember = Base :> ("getChatMember" :> (QueryR "chat_id" ChatId :> (QueryR "user_id" Integer :> Get '[JSON] (ReqResult ChatMember)))) Source #
type GetMyCommands = Base :> ("getMyCommands" :> Get '[JSON] (ReqResult [BotCommand])) Source #