File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed
Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -3,20 +3,24 @@ export type MessageSendRequest = {
33 content : string ;
44 /** @example "+18005550199" */
55 from : string ;
6+ /** @example "+18005550100" */
7+ to : string ;
68 /**
7- * RequestID is an optional parameter used to track a request from the client's perspective
9+ * request_id is an optional parameter used to track a request from the client's perspective
810 * @example "153554b5-ae44-44a0-8f4f-7bbac5657ad4"
911 */
1012 request_id ?: string ;
1113 /**
12- * SendAt is an optional parameter used to schedule a message to be sent at a later time
14+ * send_at is an optional parameter used to schedule a message to be sent at a later time
1315 * @example "2022-06-05T14:26:09.527976+03:00"
1416 */
15- send_at ?: string ;
16- /** @example "+18005550100" */
17- to : string ;
18- /** @example false */
19- encrypted : boolean ;
17+ send_at ?: Date ;
18+ /**
19+ * Determines weather or not the message content is encrypted already. Note that you have to also set the encryption
20+ * key on the Android app for this feature to work properly.
21+ * @example false
22+ */
23+ encrypted ?: boolean ;
2024} ;
2125
2226export type MessageResponse = {
You can’t perform that action at this time.
0 commit comments