channels.ConvertToGigagroup
- class pyrogram.raw.functions.channels.ConvertToGigagroup
Convert a supergroup to a gigagroup, when requested by channel suggestions.
- Details:
Layer:
223ID:
B290C69
- Parameters:
channel (
InputChannel) – The supergroup to convert- Returns:
TL Schema
channels.convertToGigagroup#b290c69
channel:InputChannel
= Updates
Parameter Tree
ConvertToGigagroup
└── channel →
InputChannel├──
InputChannel│ ├── channel_id →
long│ └── access_hash →
long├── peer →
InputPeer│ ├──
InputPeerEmpty│ ├──
InputPeerSelf│ ├──
InputPeerChat│ ├──
InputPeerUser│ ├──
InputPeerChannel│ ├──
InputPeerUserFromMessage├── msg_id →
int└── channel_id →
longExample
await app.invoke(
ConvertToGigagroup(
channel=await app.resolve_channel(chat_id),
)
)