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?: string
Message to send
readonly operation?: "send"
Default: "send"
readonly options?: { ... }
Default: {}
readonly resource?: "sms" | "voice"
Default: "sms"
readonly to?: string
Number from which to send the message
Number to which to send the message