Interface MessageBirdNodeParameters

Source
interface MessageBirdNodeParameters {
    additionalFields?: {
        createdDatetime?: string;
        datacoding?: "auto" | "plain" | "unicode";
        gateway?: number;
        groupIds?: string;
        mclass?: 0 | 1;
        reference?: string;
        reportUrl?: string;
        scheduledDatetime?: string;
        type?: "binary" | "sms" | "flash";
        typeDetails?: string;
        validity?: number;
    };
    message?: string;
    operation?: "get"
    | "send";
    originator?: string;
    recipients?: string;
    resource?: "sms" | "balance";
}

Properties§

Source§

readonly additionalFields?: {
    createdDatetime?: string;
    datacoding?: "auto" | "plain" | "unicode";
    gateway?: number;
    groupIds?: string;
    mclass?: 0 | 1;
    reference?: string;
    reportUrl?: string;
    scheduledDatetime?: string;
    type?: "binary" | "sms" | "flash";
    typeDetails?: string;
    validity?: number;
}

Default: {}

Source§

readonly message?: string

The message to be send

Source§

readonly operation?: "get" | "send"

Default: "send"

Source§

readonly originator?: string

The number from which to send the message

Source§

readonly recipients?: string

All recipients separated by commas

Source§

readonly resource?: "sms" | "balance"

Default: "sms"