| 1 | <?php |
||
| 8 | class Bot extends ClientObject |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Gets the bot's ID. |
||
| 12 | * |
||
| 13 | * @return string The bot's ID. |
||
| 14 | */ |
||
| 15 | public function getId() |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Gets the name of the bot. |
||
| 22 | * |
||
| 23 | * @return string The name of the bot. |
||
| 24 | */ |
||
| 25 | public function getName() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Checks if the bot is deleted. |
||
| 32 | * |
||
| 33 | * @return bool True if the bot is deleted. |
||
| 34 | */ |
||
| 35 | public function isDeleted() |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Bot icon image URL 36x36px |
||
| 42 | * |
||
| 43 | * @return string URL of the 36x36px bot icon image |
||
| 44 | */ |
||
| 45 | public function getIconImage36() |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Bot icon image URL 48x48px |
||
| 52 | * |
||
| 53 | * @return string URL of the 48x48px bot icon image |
||
| 54 | */ |
||
| 55 | public function getIconImage48() |
||
| 59 | |||
| 60 | /** |
||
| 61 | * Bot icon image URL 72x72px |
||
| 62 | * |
||
| 63 | * @return string URL of the 72x72px bot icon image |
||
| 64 | */ |
||
| 65 | public function getIconImage72() |
||
| 69 | } |
||
| 70 |