mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
30 lines
1,019 B
Python
30 lines
1,019 B
Python
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, Any, Dict, Union
|
|
|
|
from .base import Request, TelegramMethod
|
|
|
|
if TYPE_CHECKING: # pragma: no cover
|
|
from ..client.bot import Bot
|
|
|
|
|
|
class SetChatAdministratorCustomTitle(TelegramMethod[bool]):
|
|
"""
|
|
Use this method to set a custom title for an administrator in a supergroup promoted by the bot. Returns *True* on success.
|
|
|
|
Source: https://core.telegram.org/bots/api#setchatadministratorcustomtitle
|
|
"""
|
|
|
|
__returning__ = bool
|
|
|
|
chat_id: Union[int, str]
|
|
"""Unique identifier for the target chat or username of the target supergroup (in the format :code:`@supergroupusername`)"""
|
|
user_id: int
|
|
"""Unique identifier of the target user"""
|
|
custom_title: str
|
|
"""New custom title for the administrator; 0-16 characters, emoji are not allowed"""
|
|
|
|
def build_request(self, bot: Bot) -> Request:
|
|
data: Dict[str, Any] = self.dict()
|
|
|
|
return Request(method="setChatAdministratorCustomTitle", data=data)
|