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§

§readonly additionalFields?: { ... }

Default: {}

§readonly message?: string

The message to be send

§readonly operation?: "get" | "send"

Default: "send"

§readonly originator?: string

The number from which to send the message

§readonly recipients?: string

All recipients separated by commas

§readonly resource?: "sms" | "balance"

Default: "sms"