NotificationSoundLocal

class pyrogram.raw.types.NotificationSoundLocal

Indicates a specific local notification sound should be used

Constructor of NotificationSound.

Details:
  • Layer: 223

  • ID: 830B9AE4

Parameters:
  • title (str) – Notification sound title

  • data (str) – Notification sound identifier (arbitrary data used by the client to identify a specific local notification sound)

TL Schema

notificationSoundLocal#830b9ae4
title:string
data:string

= NotificationSound

Parameter Tree

NotificationSoundLocal
├── titlestring
└── datastring

Example

NotificationSoundLocal(
    title="text",
    data="text",
)