interface MoceanNodeParameters {
from?: string;
language?:
| "en-US"
| "en-GB"
| "ja-JP"
| "cmn-CN"
| "ko-KR";
message?: string;
operation?: "send";
options?: { dlrUrl?: string };
resource?: "sms" | "voice";
to?: string;
}Properties§
§§§§§§
readonly from?: string§
readonly language?: "en-US" | "en-GB" | "ja-JP" | "cmn-CN" | "ko-KR"Default: "en-US"
readonly message?: stringMessage to send
readonly operation?: "send"Default: "send"
readonly options?: { ... }Default: {}
readonly resource?: "sms" | "voice"Default: "sms"
readonly to?: stringNumber from which to send the message
Number to which to send the message