account.GetMultiWallPapers

class pyrogram.raw.functions.account.GetMultiWallPapers

Get info about multiple wallpapers

Details:
  • Layer: 223

  • ID: 65AD71DC

Parameters:

wallpapers (List of InputWallPaper) – Wallpapers to fetch info about

Returns:

List of WallPaper

TL Schema

account.getMultiWallPapers#65ad71dc
wallpapers:Vector<InputWallPaper>

= Vector<WallPaper>

Parameter Tree

GetMultiWallPapers
└── wallpapersVector < InputWallPaper >
├── InputWallPaper
│ ├── idlong
│ └── access_hashlong
│ └── slugstring
└── idlong

Example

await app.invoke(
    GetMultiWallPapers(
        wallpapers=[
                InputWallPaper(
                    id=0,
                    access_hash=0
                )
            ],
    )
)