Interface NotificationSound

Describes a notification sound in MP3 format.

interface NotificationSound {
    @type: "notificationSound";
    data: string;
    date: number;
    duration: number;
    id: string;
    sound: File;
    title: string;
}

Properties

@type: "notificationSound"
data: string

Arbitrary data, defined while the sound was uploaded.

date: number

Point in time (Unix timestamp) when the sound was created.

duration: number

Duration of the sound, in seconds.

id: string

Unique identifier of the notification sound.

sound: File

File containing the sound.

title: string

Title of the notification sound.