Interface SendOptions

Defines the options for the send method, primarily specifying the recipients.

interface SendOptions {
    recipients: PushoverRecipient[];
    verbose?: boolean;
}

Properties

Properties

recipients: PushoverRecipient[]

An array of PushoverRecipient objects, each specifying a user/group and optional devices.

verbose?: boolean

If true, enables verbose logging to the console during the send operation. Defaults to false.