account.GetWallPaper

class pyrogram.raw.functions.account.GetWallPaper

Get info about a certain wallpaper

Details:
  • Layer: 223

  • ID: FC8DDBEA

Parameters:

wallpaper (InputWallPaper) – The wallpaper to get info about

Returns:

WallPaper

TL Schema

account.getWallPaper#fc8ddbea
wallpaper:InputWallPaper

= WallPaper

Parameter Tree

GetWallPaper
└── wallpaperInputWallPaper
├── InputWallPaper
│ ├── idlong
│ └── access_hashlong
│ └── slugstring
└── idlong

Example

await app.invoke(
    GetWallPaper(
        wallpaper=InputWallPaper(
            id=0,
            access_hash=0
        ),
    )
)