Interface PushoverRecipient

Represents a single Pushover recipient, which can be a user or a group.

interface PushoverRecipient {
    devices?: string[];
    id: string;
}

Properties

Properties

devices?: string[]

An optional array of specific device names belonging to the user to send the notification to. If omitted, sends to all user's devices.

id: string

The Pushover user key or group key.