SmsMessage

Properties

message: string;

Text message. Standard restrictions for text messages apply

receivers: string[];

List of recipients

sender: string;

Sender name

Source

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
interface SmsMessage {

  /**
   * Text message. Standard restrictions for text messages apply
   */
  message: string;

  /**
   * List of recipients
   */
  receivers: string[];

  /**
   * Sender name
   */
  sender: string;

}