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?: stringThe message to send
readonly operation?: "send" | "make"Default: "send"
readonly options?: { ... }Default: {}
readonly resource?: "call" | "sms"Default: "sms"
readonly to?: stringThe number to which to send the message
readonly to Whatsapp?: booleanWhether the message should be sent to WhatsApp
readonly twiml?: booleanWhether to use the Twilio Markup Language in the message
The number from which to send the message