account.GetMultiWallPapers

class pyrogram.raw.functions.account.GetMultiWallPapers

Get info about multiple wallpapers

Details:
  • Layer: 227

  • 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
└── wallpapers → Vector < InputWallPaper >
├── InputWallPaper
│ ├── id → long
│ └── access_hash → long
│ └── slug → string
└── id → long

Example

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