account.GetThemes

class pyrogram.raw.functions.account.GetThemes

Get installed themes

Details:
  • Layer: 223

  • ID: 7206E458

Parameters:
  • format (str) – Theme format, a string that identifies the theming engines supported by the client

  • hash (int 64-bit) – Hash used for caching, for more info click here.

Returns:

account.Themes

TL Schema

account.getThemes#7206e458
format:string
hash:long

= account.Themes

Parameter Tree

GetThemes
├── formatstring
└── hashlong

Example

await app.invoke(
    GetThemes(
        format="text",
        hash=0,
    )
)