Interface SpontitNodeParameters

Source
interface SpontitNodeParameters {
    additionalFields?: {
        channelName?: string;
        expirationStamp?: string;
        iOSDeepLink?: string;
        link?: string;
        openInHomeFeed?: boolean;
        openLinkInApp?: boolean;
        pushTitle?: string;
        pushToEmails?: string;
        pushToFollowers?: string;
        pushToPhoneNumbers?: string;
        schedule?: string;
        subtitle?: string;
    };
    content?: string;
    operation?: "create";
    resource?: "push";
}

Properties§

Source§

readonly additionalFields?: {
    channelName?: string;
    expirationStamp?: string;
    iOSDeepLink?: string;
    link?: string;
    openInHomeFeed?: boolean;
    openLinkInApp?: boolean;
    pushTitle?: string;
    pushToEmails?: string;
    pushToFollowers?: string;
    pushToPhoneNumbers?: string;
    schedule?: string;
    subtitle?: string;
}

Default: {}

Source§

readonly content?: string

To provide text in a push, supply one of either "content" or "pushContent" (or both). Limited to 2500 characters. (Required if a value for "pushContent" is not provided).

Source§

readonly operation?: "create"

Default: "create"

Source§

readonly resource?: "push"

Default: "push"