interface TwilioNodeParameters {
from?: string;
message?: string;
operation?: "send" | "make";
options?: { statusCallback?: string };
resource?: "call" | "sms";
to?: string;
toWhatsapp?: boolean;
twiml?: boolean;
}
Properties§
§
§
§
§
§
§
§
§
readonly from?: string
readonly message?: string
The message to send
readonly operation?: "send" | "make"
Default: "send"
readonly options?: { ... }
Default: {}
readonly resource?: "call" | "sms"
Default: "sms"
readonly to?: string
The number to which to send the message
readonly to Whatsapp?: boolean
Whether the message should be sent to WhatsApp
readonly twiml?: boolean
Whether to use the Twilio Markup Language in the message
The number from which to send the message