Story.reply_media_group()
- Story.reply_media_group()
Bound method reply_media_group of
Story.Use as a shortcut for:
await client.send_media_group( chat_id=story.from_user.id, media=list_of_media, reply_to_story_id=story.id )Example
await story.reply_media_group(list_of_media)- Parameters:
media (
list) – A list containing eitherInputMediaPhotoorInputMediaVideoobjects describing photos and videos to be sent, must include 2–10 items.disable_notification (
bool, optional) – Sends the message silently. Users will receive a notification with no sound.reply_to_story_id (
int, optional) – If the message is a reply, ID of the original message.
- Returns:
On success, a
Messagesobject is returned containing all the single messages sent.- Raises:
RPCError – In case of a Telegram RPC error.