mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-11 18:01:04 +00:00
Add autogenerated docs for types and methods
This commit is contained in:
parent
a24708d589
commit
65331e1fda
166 changed files with 7361 additions and 4 deletions
52
docs/api/methods/delete_webhook.md
Normal file
52
docs/api/methods/delete_webhook.md
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
# deleteWebhook
|
||||
|
||||
## Description
|
||||
|
||||
Use this method to remove webhook integration if you decide to switch back to getUpdates. Returns True on success. Requires no parameters.
|
||||
|
||||
|
||||
|
||||
|
||||
## Response
|
||||
|
||||
Type: `#!python3 bool`
|
||||
|
||||
Description: Returns True on success.
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
|
||||
### As bot method bot
|
||||
|
||||
```python3
|
||||
result: bool = await bot.delete_webhook(...)
|
||||
```
|
||||
|
||||
### Method as object
|
||||
|
||||
Imports:
|
||||
|
||||
- `from aiogram.types import DeleteWebhook`
|
||||
- `from aiogram.api.types import DeleteWebhook`
|
||||
- `from aiogram.api.types.delete_webhook import DeleteWebhook`
|
||||
|
||||
#### As reply into Webhook
|
||||
```python3
|
||||
return DeleteWebhook(...)
|
||||
```
|
||||
|
||||
#### With specific bot
|
||||
```python3
|
||||
result: bool = await bot.emit(DeleteWebhook(...))
|
||||
```
|
||||
|
||||
#### In handlers with current bot
|
||||
```python3
|
||||
result: bool = await DeleteWebhook(...)
|
||||
```
|
||||
|
||||
|
||||
## Related pages:
|
||||
|
||||
- [Official documentation](https://core.telegram.org/bots/api#deletewebhook)
|
||||
Loading…
Add table
Add a link
Reference in a new issue