mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
27 lines
884 B
Python
27 lines
884 B
Python
from typing import Any, Dict, Union
|
|
|
|
from .base import Request, TelegramMethod
|
|
|
|
|
|
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
|
|
@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) -> Request:
|
|
data: Dict[str, Any] = self.dict()
|
|
|
|
return Request(method="setChatAdministratorCustomTitle", data=data)
|