twilio 3.71.1 → 3.71.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGES.md +21 -0
- package/lib/jwt/ClientCapability.d.ts +1 -1
- package/lib/rest/api/v2010/account/call.d.ts +1 -1
- package/lib/rest/api/v2010/account/call.js +1 -1
- package/lib/rest/frontlineApi/v1/user.d.ts +4 -0
- package/lib/rest/frontlineApi/v1/user.js +10 -1
- package/lib/rest/messaging/v1/brandRegistration/brandVetting.d.ts +46 -2
- package/lib/rest/messaging/v1/brandRegistration/brandVetting.js +139 -5
- package/lib/rest/verify/v2/service/entity/factor.d.ts +3 -1
- package/lib/rest/verify/v2/service/entity/factor.js +6 -1
- package/lib/rest/verify/v2/service/entity/newFactor.d.ts +1 -1
- package/lib/rest/verify/v2/verificationAttempt.d.ts +1 -1
- package/lib/twiml/VoiceResponse.d.ts +1296 -24
- package/lib/twiml/VoiceResponse.js +2170 -82
- package/package.json +1 -1
|
@@ -1149,40 +1149,40 @@ declare namespace VoiceResponse {
|
|
|
1149
1149
|
*
|
|
1150
1150
|
* @param words - Words to emphasize
|
|
1151
1151
|
*/
|
|
1152
|
-
emphasis(words: string):
|
|
1152
|
+
emphasis(words: string): VoiceResponse.SsmlEmphasis;
|
|
1153
1153
|
/**
|
|
1154
1154
|
* Emphasizing Words in <Say>
|
|
1155
1155
|
*
|
|
1156
1156
|
* @param attributes - TwiML attributes
|
|
1157
1157
|
* @param words - Words to emphasize
|
|
1158
1158
|
*/
|
|
1159
|
-
emphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string):
|
|
1159
|
+
emphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string): VoiceResponse.SsmlEmphasis;
|
|
1160
1160
|
/**
|
|
1161
1161
|
* Specifying Another Language for Specific Words in <Say>
|
|
1162
1162
|
*
|
|
1163
1163
|
* @param words - Words to speak
|
|
1164
1164
|
*/
|
|
1165
|
-
lang(words: string):
|
|
1165
|
+
lang(words: string): VoiceResponse.SsmlLang;
|
|
1166
1166
|
/**
|
|
1167
1167
|
* Specifying Another Language for Specific Words in <Say>
|
|
1168
1168
|
*
|
|
1169
1169
|
* @param attributes - TwiML attributes
|
|
1170
1170
|
* @param words - Words to speak
|
|
1171
1171
|
*/
|
|
1172
|
-
lang(attributes: VoiceResponse.SsmlLangAttributes, words: string):
|
|
1172
|
+
lang(attributes: VoiceResponse.SsmlLangAttributes, words: string): VoiceResponse.SsmlLang;
|
|
1173
1173
|
/**
|
|
1174
1174
|
* Adding a Pause Between Paragraphs in <Say>
|
|
1175
1175
|
*
|
|
1176
1176
|
* @param words - Words to speak
|
|
1177
1177
|
*/
|
|
1178
|
-
p(words: string):
|
|
1178
|
+
p(words: string): VoiceResponse.SsmlP;
|
|
1179
1179
|
/**
|
|
1180
1180
|
* Adding a Pause Between Paragraphs in <Say>
|
|
1181
1181
|
*
|
|
1182
1182
|
* @param attributes - TwiML attributes
|
|
1183
1183
|
* @param words - Words to speak
|
|
1184
1184
|
*/
|
|
1185
|
-
p(attributes: object, words: string):
|
|
1185
|
+
p(attributes: object, words: string): VoiceResponse.SsmlP;
|
|
1186
1186
|
/**
|
|
1187
1187
|
* Using Phonetic Pronunciation in <Say>
|
|
1188
1188
|
*
|
|
@@ -1201,27 +1201,27 @@ declare namespace VoiceResponse {
|
|
|
1201
1201
|
*
|
|
1202
1202
|
* @param words - Words to speak
|
|
1203
1203
|
*/
|
|
1204
|
-
prosody(words: string):
|
|
1204
|
+
prosody(words: string): VoiceResponse.SsmlProsody;
|
|
1205
1205
|
/**
|
|
1206
1206
|
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
1207
1207
|
*
|
|
1208
1208
|
* @param attributes - TwiML attributes
|
|
1209
1209
|
* @param words - Words to speak
|
|
1210
1210
|
*/
|
|
1211
|
-
prosody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string):
|
|
1211
|
+
prosody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string): VoiceResponse.SsmlProsody;
|
|
1212
1212
|
/**
|
|
1213
1213
|
* Adding A Pause Between Sentences in <Say>
|
|
1214
1214
|
*
|
|
1215
1215
|
* @param words - Words to speak
|
|
1216
1216
|
*/
|
|
1217
|
-
s(words: string):
|
|
1217
|
+
s(words: string): VoiceResponse.SsmlS;
|
|
1218
1218
|
/**
|
|
1219
1219
|
* Adding A Pause Between Sentences in <Say>
|
|
1220
1220
|
*
|
|
1221
1221
|
* @param attributes - TwiML attributes
|
|
1222
1222
|
* @param words - Words to speak
|
|
1223
1223
|
*/
|
|
1224
|
-
s(attributes: object, words: string):
|
|
1224
|
+
s(attributes: object, words: string): VoiceResponse.SsmlS;
|
|
1225
1225
|
/**
|
|
1226
1226
|
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
1227
1227
|
*
|
|
@@ -1246,40 +1246,40 @@ declare namespace VoiceResponse {
|
|
|
1246
1246
|
*
|
|
1247
1247
|
* @param words - Words to emphasize
|
|
1248
1248
|
*/
|
|
1249
|
-
ssmlEmphasis(words: string):
|
|
1249
|
+
ssmlEmphasis(words: string): VoiceResponse.SsmlEmphasis;
|
|
1250
1250
|
/**
|
|
1251
1251
|
* Emphasizing Words in <Say>
|
|
1252
1252
|
*
|
|
1253
1253
|
* @param attributes - TwiML attributes
|
|
1254
1254
|
* @param words - Words to emphasize
|
|
1255
1255
|
*/
|
|
1256
|
-
ssmlEmphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string):
|
|
1256
|
+
ssmlEmphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string): VoiceResponse.SsmlEmphasis;
|
|
1257
1257
|
/**
|
|
1258
1258
|
* Specifying Another Language for Specific Words in <Say>
|
|
1259
1259
|
*
|
|
1260
1260
|
* @param words - Words to speak
|
|
1261
1261
|
*/
|
|
1262
|
-
ssmlLang(words: string):
|
|
1262
|
+
ssmlLang(words: string): VoiceResponse.SsmlLang;
|
|
1263
1263
|
/**
|
|
1264
1264
|
* Specifying Another Language for Specific Words in <Say>
|
|
1265
1265
|
*
|
|
1266
1266
|
* @param attributes - TwiML attributes
|
|
1267
1267
|
* @param words - Words to speak
|
|
1268
1268
|
*/
|
|
1269
|
-
ssmlLang(attributes: VoiceResponse.SsmlLangAttributes, words: string):
|
|
1269
|
+
ssmlLang(attributes: VoiceResponse.SsmlLangAttributes, words: string): VoiceResponse.SsmlLang;
|
|
1270
1270
|
/**
|
|
1271
1271
|
* Adding a Pause Between Paragraphs in <Say>
|
|
1272
1272
|
*
|
|
1273
1273
|
* @param words - Words to speak
|
|
1274
1274
|
*/
|
|
1275
|
-
ssmlP(words: string):
|
|
1275
|
+
ssmlP(words: string): VoiceResponse.SsmlP;
|
|
1276
1276
|
/**
|
|
1277
1277
|
* Adding a Pause Between Paragraphs in <Say>
|
|
1278
1278
|
*
|
|
1279
1279
|
* @param attributes - TwiML attributes
|
|
1280
1280
|
* @param words - Words to speak
|
|
1281
1281
|
*/
|
|
1282
|
-
ssmlP(attributes: object, words: string):
|
|
1282
|
+
ssmlP(attributes: object, words: string): VoiceResponse.SsmlP;
|
|
1283
1283
|
/**
|
|
1284
1284
|
* Using Phonetic Pronunciation in <Say>
|
|
1285
1285
|
*
|
|
@@ -1298,27 +1298,27 @@ declare namespace VoiceResponse {
|
|
|
1298
1298
|
*
|
|
1299
1299
|
* @param words - Words to speak
|
|
1300
1300
|
*/
|
|
1301
|
-
ssmlProsody(words: string):
|
|
1301
|
+
ssmlProsody(words: string): VoiceResponse.SsmlProsody;
|
|
1302
1302
|
/**
|
|
1303
1303
|
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
1304
1304
|
*
|
|
1305
1305
|
* @param attributes - TwiML attributes
|
|
1306
1306
|
* @param words - Words to speak
|
|
1307
1307
|
*/
|
|
1308
|
-
ssmlProsody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string):
|
|
1308
|
+
ssmlProsody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string): VoiceResponse.SsmlProsody;
|
|
1309
1309
|
/**
|
|
1310
1310
|
* Adding A Pause Between Sentences in <Say>
|
|
1311
1311
|
*
|
|
1312
1312
|
* @param words - Words to speak
|
|
1313
1313
|
*/
|
|
1314
|
-
ssmlS(words: string):
|
|
1314
|
+
ssmlS(words: string): VoiceResponse.SsmlS;
|
|
1315
1315
|
/**
|
|
1316
1316
|
* Adding A Pause Between Sentences in <Say>
|
|
1317
1317
|
*
|
|
1318
1318
|
* @param attributes - TwiML attributes
|
|
1319
1319
|
* @param words - Words to speak
|
|
1320
1320
|
*/
|
|
1321
|
-
ssmlS(attributes: object, words: string):
|
|
1321
|
+
ssmlS(attributes: object, words: string): VoiceResponse.SsmlS;
|
|
1322
1322
|
/**
|
|
1323
1323
|
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
1324
1324
|
*
|
|
@@ -1350,14 +1350,14 @@ declare namespace VoiceResponse {
|
|
|
1350
1350
|
*
|
|
1351
1351
|
* @param words - Words to speak
|
|
1352
1352
|
*/
|
|
1353
|
-
ssmlW(words: string):
|
|
1353
|
+
ssmlW(words: string): VoiceResponse.SsmlW;
|
|
1354
1354
|
/**
|
|
1355
1355
|
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
1356
1356
|
*
|
|
1357
1357
|
* @param attributes - TwiML attributes
|
|
1358
1358
|
* @param words - Words to speak
|
|
1359
1359
|
*/
|
|
1360
|
-
ssmlW(attributes: VoiceResponse.SsmlWAttributes, words: string):
|
|
1360
|
+
ssmlW(attributes: VoiceResponse.SsmlWAttributes, words: string): VoiceResponse.SsmlW;
|
|
1361
1361
|
/**
|
|
1362
1362
|
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
1363
1363
|
*
|
|
@@ -1376,14 +1376,14 @@ declare namespace VoiceResponse {
|
|
|
1376
1376
|
*
|
|
1377
1377
|
* @param words - Words to speak
|
|
1378
1378
|
*/
|
|
1379
|
-
w(words: string):
|
|
1379
|
+
w(words: string): VoiceResponse.SsmlW;
|
|
1380
1380
|
/**
|
|
1381
1381
|
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
1382
1382
|
*
|
|
1383
1383
|
* @param attributes - TwiML attributes
|
|
1384
1384
|
* @param words - Words to speak
|
|
1385
1385
|
*/
|
|
1386
|
-
w(attributes: VoiceResponse.SsmlWAttributes, words: string):
|
|
1386
|
+
w(attributes: VoiceResponse.SsmlWAttributes, words: string): VoiceResponse.SsmlW;
|
|
1387
1387
|
}
|
|
1388
1388
|
|
|
1389
1389
|
|
|
@@ -1398,6 +1398,1278 @@ declare namespace VoiceResponse {
|
|
|
1398
1398
|
}
|
|
1399
1399
|
|
|
1400
1400
|
|
|
1401
|
+
class SsmlEmphasis {
|
|
1402
|
+
|
|
1403
|
+
/**
|
|
1404
|
+
* Adding a Pause in <Say>
|
|
1405
|
+
*
|
|
1406
|
+
* @param attributes - TwiML attributes
|
|
1407
|
+
*/
|
|
1408
|
+
break_(attributes?: VoiceResponse.SsmlBreakAttributes): void;
|
|
1409
|
+
/**
|
|
1410
|
+
* Emphasizing Words in <Say>
|
|
1411
|
+
*
|
|
1412
|
+
* @param words - Words to emphasize
|
|
1413
|
+
*/
|
|
1414
|
+
emphasis(words: string): VoiceResponse.SsmlEmphasis;
|
|
1415
|
+
/**
|
|
1416
|
+
* Emphasizing Words in <Say>
|
|
1417
|
+
*
|
|
1418
|
+
* @param attributes - TwiML attributes
|
|
1419
|
+
* @param words - Words to emphasize
|
|
1420
|
+
*/
|
|
1421
|
+
emphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string): VoiceResponse.SsmlEmphasis;
|
|
1422
|
+
/**
|
|
1423
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
1424
|
+
*
|
|
1425
|
+
* @param words - Words to speak
|
|
1426
|
+
*/
|
|
1427
|
+
lang(words: string): VoiceResponse.SsmlLang;
|
|
1428
|
+
/**
|
|
1429
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
1430
|
+
*
|
|
1431
|
+
* @param attributes - TwiML attributes
|
|
1432
|
+
* @param words - Words to speak
|
|
1433
|
+
*/
|
|
1434
|
+
lang(attributes: VoiceResponse.SsmlLangAttributes, words: string): VoiceResponse.SsmlLang;
|
|
1435
|
+
/**
|
|
1436
|
+
* Using Phonetic Pronunciation in <Say>
|
|
1437
|
+
*
|
|
1438
|
+
* @param words - Words to speak
|
|
1439
|
+
*/
|
|
1440
|
+
phoneme(words: string): void;
|
|
1441
|
+
/**
|
|
1442
|
+
* Using Phonetic Pronunciation in <Say>
|
|
1443
|
+
*
|
|
1444
|
+
* @param attributes - TwiML attributes
|
|
1445
|
+
* @param words - Words to speak
|
|
1446
|
+
*/
|
|
1447
|
+
phoneme(attributes: VoiceResponse.SsmlPhonemeAttributes, words: string): void;
|
|
1448
|
+
/**
|
|
1449
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
1450
|
+
*
|
|
1451
|
+
* @param words - Words to speak
|
|
1452
|
+
*/
|
|
1453
|
+
prosody(words: string): VoiceResponse.SsmlProsody;
|
|
1454
|
+
/**
|
|
1455
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
1456
|
+
*
|
|
1457
|
+
* @param attributes - TwiML attributes
|
|
1458
|
+
* @param words - Words to speak
|
|
1459
|
+
*/
|
|
1460
|
+
prosody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string): VoiceResponse.SsmlProsody;
|
|
1461
|
+
/**
|
|
1462
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
1463
|
+
*
|
|
1464
|
+
* @param words - Words to be interpreted
|
|
1465
|
+
*/
|
|
1466
|
+
sayAs(words: string): void;
|
|
1467
|
+
/**
|
|
1468
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
1469
|
+
*
|
|
1470
|
+
* @param attributes - TwiML attributes
|
|
1471
|
+
* @param words - Words to be interpreted
|
|
1472
|
+
*/
|
|
1473
|
+
sayAs(attributes: VoiceResponse.SsmlSayAsAttributes, words: string): void;
|
|
1474
|
+
/**
|
|
1475
|
+
* Adding a Pause in <Say>
|
|
1476
|
+
*
|
|
1477
|
+
* @param attributes - TwiML attributes
|
|
1478
|
+
*/
|
|
1479
|
+
ssmlBreak(attributes?: VoiceResponse.SsmlBreakAttributes): void;
|
|
1480
|
+
/**
|
|
1481
|
+
* Emphasizing Words in <Say>
|
|
1482
|
+
*
|
|
1483
|
+
* @param words - Words to emphasize
|
|
1484
|
+
*/
|
|
1485
|
+
ssmlEmphasis(words: string): VoiceResponse.SsmlEmphasis;
|
|
1486
|
+
/**
|
|
1487
|
+
* Emphasizing Words in <Say>
|
|
1488
|
+
*
|
|
1489
|
+
* @param attributes - TwiML attributes
|
|
1490
|
+
* @param words - Words to emphasize
|
|
1491
|
+
*/
|
|
1492
|
+
ssmlEmphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string): VoiceResponse.SsmlEmphasis;
|
|
1493
|
+
/**
|
|
1494
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
1495
|
+
*
|
|
1496
|
+
* @param words - Words to speak
|
|
1497
|
+
*/
|
|
1498
|
+
ssmlLang(words: string): VoiceResponse.SsmlLang;
|
|
1499
|
+
/**
|
|
1500
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
1501
|
+
*
|
|
1502
|
+
* @param attributes - TwiML attributes
|
|
1503
|
+
* @param words - Words to speak
|
|
1504
|
+
*/
|
|
1505
|
+
ssmlLang(attributes: VoiceResponse.SsmlLangAttributes, words: string): VoiceResponse.SsmlLang;
|
|
1506
|
+
/**
|
|
1507
|
+
* Using Phonetic Pronunciation in <Say>
|
|
1508
|
+
*
|
|
1509
|
+
* @param words - Words to speak
|
|
1510
|
+
*/
|
|
1511
|
+
ssmlPhoneme(words: string): void;
|
|
1512
|
+
/**
|
|
1513
|
+
* Using Phonetic Pronunciation in <Say>
|
|
1514
|
+
*
|
|
1515
|
+
* @param attributes - TwiML attributes
|
|
1516
|
+
* @param words - Words to speak
|
|
1517
|
+
*/
|
|
1518
|
+
ssmlPhoneme(attributes: VoiceResponse.SsmlPhonemeAttributes, words: string): void;
|
|
1519
|
+
/**
|
|
1520
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
1521
|
+
*
|
|
1522
|
+
* @param words - Words to speak
|
|
1523
|
+
*/
|
|
1524
|
+
ssmlProsody(words: string): VoiceResponse.SsmlProsody;
|
|
1525
|
+
/**
|
|
1526
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
1527
|
+
*
|
|
1528
|
+
* @param attributes - TwiML attributes
|
|
1529
|
+
* @param words - Words to speak
|
|
1530
|
+
*/
|
|
1531
|
+
ssmlProsody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string): VoiceResponse.SsmlProsody;
|
|
1532
|
+
/**
|
|
1533
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
1534
|
+
*
|
|
1535
|
+
* @param words - Words to be interpreted
|
|
1536
|
+
*/
|
|
1537
|
+
ssmlSayAs(words: string): void;
|
|
1538
|
+
/**
|
|
1539
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
1540
|
+
*
|
|
1541
|
+
* @param attributes - TwiML attributes
|
|
1542
|
+
* @param words - Words to be interpreted
|
|
1543
|
+
*/
|
|
1544
|
+
ssmlSayAs(attributes: VoiceResponse.SsmlSayAsAttributes, words: string): void;
|
|
1545
|
+
/**
|
|
1546
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
1547
|
+
*
|
|
1548
|
+
* @param words - Words to be substituted
|
|
1549
|
+
*/
|
|
1550
|
+
ssmlSub(words: string): void;
|
|
1551
|
+
/**
|
|
1552
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
1553
|
+
*
|
|
1554
|
+
* @param attributes - TwiML attributes
|
|
1555
|
+
* @param words - Words to be substituted
|
|
1556
|
+
*/
|
|
1557
|
+
ssmlSub(attributes: VoiceResponse.SsmlSubAttributes, words: string): void;
|
|
1558
|
+
/**
|
|
1559
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
1560
|
+
*
|
|
1561
|
+
* @param words - Words to speak
|
|
1562
|
+
*/
|
|
1563
|
+
ssmlW(words: string): VoiceResponse.SsmlW;
|
|
1564
|
+
/**
|
|
1565
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
1566
|
+
*
|
|
1567
|
+
* @param attributes - TwiML attributes
|
|
1568
|
+
* @param words - Words to speak
|
|
1569
|
+
*/
|
|
1570
|
+
ssmlW(attributes: VoiceResponse.SsmlWAttributes, words: string): VoiceResponse.SsmlW;
|
|
1571
|
+
/**
|
|
1572
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
1573
|
+
*
|
|
1574
|
+
* @param words - Words to be substituted
|
|
1575
|
+
*/
|
|
1576
|
+
sub(words: string): void;
|
|
1577
|
+
/**
|
|
1578
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
1579
|
+
*
|
|
1580
|
+
* @param attributes - TwiML attributes
|
|
1581
|
+
* @param words - Words to be substituted
|
|
1582
|
+
*/
|
|
1583
|
+
sub(attributes: VoiceResponse.SsmlSubAttributes, words: string): void;
|
|
1584
|
+
/**
|
|
1585
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
1586
|
+
*
|
|
1587
|
+
* @param words - Words to speak
|
|
1588
|
+
*/
|
|
1589
|
+
w(words: string): VoiceResponse.SsmlW;
|
|
1590
|
+
/**
|
|
1591
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
1592
|
+
*
|
|
1593
|
+
* @param attributes - TwiML attributes
|
|
1594
|
+
* @param words - Words to speak
|
|
1595
|
+
*/
|
|
1596
|
+
w(attributes: VoiceResponse.SsmlWAttributes, words: string): VoiceResponse.SsmlW;
|
|
1597
|
+
}
|
|
1598
|
+
|
|
1599
|
+
|
|
1600
|
+
class SsmlLang {
|
|
1601
|
+
|
|
1602
|
+
/**
|
|
1603
|
+
* Adding a Pause in <Say>
|
|
1604
|
+
*
|
|
1605
|
+
* @param attributes - TwiML attributes
|
|
1606
|
+
*/
|
|
1607
|
+
break_(attributes?: VoiceResponse.SsmlBreakAttributes): void;
|
|
1608
|
+
/**
|
|
1609
|
+
* Emphasizing Words in <Say>
|
|
1610
|
+
*
|
|
1611
|
+
* @param words - Words to emphasize
|
|
1612
|
+
*/
|
|
1613
|
+
emphasis(words: string): VoiceResponse.SsmlEmphasis;
|
|
1614
|
+
/**
|
|
1615
|
+
* Emphasizing Words in <Say>
|
|
1616
|
+
*
|
|
1617
|
+
* @param attributes - TwiML attributes
|
|
1618
|
+
* @param words - Words to emphasize
|
|
1619
|
+
*/
|
|
1620
|
+
emphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string): VoiceResponse.SsmlEmphasis;
|
|
1621
|
+
/**
|
|
1622
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
1623
|
+
*
|
|
1624
|
+
* @param words - Words to speak
|
|
1625
|
+
*/
|
|
1626
|
+
lang(words: string): VoiceResponse.SsmlLang;
|
|
1627
|
+
/**
|
|
1628
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
1629
|
+
*
|
|
1630
|
+
* @param attributes - TwiML attributes
|
|
1631
|
+
* @param words - Words to speak
|
|
1632
|
+
*/
|
|
1633
|
+
lang(attributes: VoiceResponse.SsmlLangAttributes, words: string): VoiceResponse.SsmlLang;
|
|
1634
|
+
/**
|
|
1635
|
+
* Adding a Pause Between Paragraphs in <Say>
|
|
1636
|
+
*
|
|
1637
|
+
* @param words - Words to speak
|
|
1638
|
+
*/
|
|
1639
|
+
p(words: string): VoiceResponse.SsmlP;
|
|
1640
|
+
/**
|
|
1641
|
+
* Adding a Pause Between Paragraphs in <Say>
|
|
1642
|
+
*
|
|
1643
|
+
* @param attributes - TwiML attributes
|
|
1644
|
+
* @param words - Words to speak
|
|
1645
|
+
*/
|
|
1646
|
+
p(attributes: object, words: string): VoiceResponse.SsmlP;
|
|
1647
|
+
/**
|
|
1648
|
+
* Using Phonetic Pronunciation in <Say>
|
|
1649
|
+
*
|
|
1650
|
+
* @param words - Words to speak
|
|
1651
|
+
*/
|
|
1652
|
+
phoneme(words: string): void;
|
|
1653
|
+
/**
|
|
1654
|
+
* Using Phonetic Pronunciation in <Say>
|
|
1655
|
+
*
|
|
1656
|
+
* @param attributes - TwiML attributes
|
|
1657
|
+
* @param words - Words to speak
|
|
1658
|
+
*/
|
|
1659
|
+
phoneme(attributes: VoiceResponse.SsmlPhonemeAttributes, words: string): void;
|
|
1660
|
+
/**
|
|
1661
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
1662
|
+
*
|
|
1663
|
+
* @param words - Words to speak
|
|
1664
|
+
*/
|
|
1665
|
+
prosody(words: string): VoiceResponse.SsmlProsody;
|
|
1666
|
+
/**
|
|
1667
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
1668
|
+
*
|
|
1669
|
+
* @param attributes - TwiML attributes
|
|
1670
|
+
* @param words - Words to speak
|
|
1671
|
+
*/
|
|
1672
|
+
prosody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string): VoiceResponse.SsmlProsody;
|
|
1673
|
+
/**
|
|
1674
|
+
* Adding A Pause Between Sentences in <Say>
|
|
1675
|
+
*
|
|
1676
|
+
* @param words - Words to speak
|
|
1677
|
+
*/
|
|
1678
|
+
s(words: string): VoiceResponse.SsmlS;
|
|
1679
|
+
/**
|
|
1680
|
+
* Adding A Pause Between Sentences in <Say>
|
|
1681
|
+
*
|
|
1682
|
+
* @param attributes - TwiML attributes
|
|
1683
|
+
* @param words - Words to speak
|
|
1684
|
+
*/
|
|
1685
|
+
s(attributes: object, words: string): VoiceResponse.SsmlS;
|
|
1686
|
+
/**
|
|
1687
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
1688
|
+
*
|
|
1689
|
+
* @param words - Words to be interpreted
|
|
1690
|
+
*/
|
|
1691
|
+
sayAs(words: string): void;
|
|
1692
|
+
/**
|
|
1693
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
1694
|
+
*
|
|
1695
|
+
* @param attributes - TwiML attributes
|
|
1696
|
+
* @param words - Words to be interpreted
|
|
1697
|
+
*/
|
|
1698
|
+
sayAs(attributes: VoiceResponse.SsmlSayAsAttributes, words: string): void;
|
|
1699
|
+
/**
|
|
1700
|
+
* Adding a Pause in <Say>
|
|
1701
|
+
*
|
|
1702
|
+
* @param attributes - TwiML attributes
|
|
1703
|
+
*/
|
|
1704
|
+
ssmlBreak(attributes?: VoiceResponse.SsmlBreakAttributes): void;
|
|
1705
|
+
/**
|
|
1706
|
+
* Emphasizing Words in <Say>
|
|
1707
|
+
*
|
|
1708
|
+
* @param words - Words to emphasize
|
|
1709
|
+
*/
|
|
1710
|
+
ssmlEmphasis(words: string): VoiceResponse.SsmlEmphasis;
|
|
1711
|
+
/**
|
|
1712
|
+
* Emphasizing Words in <Say>
|
|
1713
|
+
*
|
|
1714
|
+
* @param attributes - TwiML attributes
|
|
1715
|
+
* @param words - Words to emphasize
|
|
1716
|
+
*/
|
|
1717
|
+
ssmlEmphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string): VoiceResponse.SsmlEmphasis;
|
|
1718
|
+
/**
|
|
1719
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
1720
|
+
*
|
|
1721
|
+
* @param words - Words to speak
|
|
1722
|
+
*/
|
|
1723
|
+
ssmlLang(words: string): VoiceResponse.SsmlLang;
|
|
1724
|
+
/**
|
|
1725
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
1726
|
+
*
|
|
1727
|
+
* @param attributes - TwiML attributes
|
|
1728
|
+
* @param words - Words to speak
|
|
1729
|
+
*/
|
|
1730
|
+
ssmlLang(attributes: VoiceResponse.SsmlLangAttributes, words: string): VoiceResponse.SsmlLang;
|
|
1731
|
+
/**
|
|
1732
|
+
* Adding a Pause Between Paragraphs in <Say>
|
|
1733
|
+
*
|
|
1734
|
+
* @param words - Words to speak
|
|
1735
|
+
*/
|
|
1736
|
+
ssmlP(words: string): VoiceResponse.SsmlP;
|
|
1737
|
+
/**
|
|
1738
|
+
* Adding a Pause Between Paragraphs in <Say>
|
|
1739
|
+
*
|
|
1740
|
+
* @param attributes - TwiML attributes
|
|
1741
|
+
* @param words - Words to speak
|
|
1742
|
+
*/
|
|
1743
|
+
ssmlP(attributes: object, words: string): VoiceResponse.SsmlP;
|
|
1744
|
+
/**
|
|
1745
|
+
* Using Phonetic Pronunciation in <Say>
|
|
1746
|
+
*
|
|
1747
|
+
* @param words - Words to speak
|
|
1748
|
+
*/
|
|
1749
|
+
ssmlPhoneme(words: string): void;
|
|
1750
|
+
/**
|
|
1751
|
+
* Using Phonetic Pronunciation in <Say>
|
|
1752
|
+
*
|
|
1753
|
+
* @param attributes - TwiML attributes
|
|
1754
|
+
* @param words - Words to speak
|
|
1755
|
+
*/
|
|
1756
|
+
ssmlPhoneme(attributes: VoiceResponse.SsmlPhonemeAttributes, words: string): void;
|
|
1757
|
+
/**
|
|
1758
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
1759
|
+
*
|
|
1760
|
+
* @param words - Words to speak
|
|
1761
|
+
*/
|
|
1762
|
+
ssmlProsody(words: string): VoiceResponse.SsmlProsody;
|
|
1763
|
+
/**
|
|
1764
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
1765
|
+
*
|
|
1766
|
+
* @param attributes - TwiML attributes
|
|
1767
|
+
* @param words - Words to speak
|
|
1768
|
+
*/
|
|
1769
|
+
ssmlProsody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string): VoiceResponse.SsmlProsody;
|
|
1770
|
+
/**
|
|
1771
|
+
* Adding A Pause Between Sentences in <Say>
|
|
1772
|
+
*
|
|
1773
|
+
* @param words - Words to speak
|
|
1774
|
+
*/
|
|
1775
|
+
ssmlS(words: string): VoiceResponse.SsmlS;
|
|
1776
|
+
/**
|
|
1777
|
+
* Adding A Pause Between Sentences in <Say>
|
|
1778
|
+
*
|
|
1779
|
+
* @param attributes - TwiML attributes
|
|
1780
|
+
* @param words - Words to speak
|
|
1781
|
+
*/
|
|
1782
|
+
ssmlS(attributes: object, words: string): VoiceResponse.SsmlS;
|
|
1783
|
+
/**
|
|
1784
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
1785
|
+
*
|
|
1786
|
+
* @param words - Words to be interpreted
|
|
1787
|
+
*/
|
|
1788
|
+
ssmlSayAs(words: string): void;
|
|
1789
|
+
/**
|
|
1790
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
1791
|
+
*
|
|
1792
|
+
* @param attributes - TwiML attributes
|
|
1793
|
+
* @param words - Words to be interpreted
|
|
1794
|
+
*/
|
|
1795
|
+
ssmlSayAs(attributes: VoiceResponse.SsmlSayAsAttributes, words: string): void;
|
|
1796
|
+
/**
|
|
1797
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
1798
|
+
*
|
|
1799
|
+
* @param words - Words to be substituted
|
|
1800
|
+
*/
|
|
1801
|
+
ssmlSub(words: string): void;
|
|
1802
|
+
/**
|
|
1803
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
1804
|
+
*
|
|
1805
|
+
* @param attributes - TwiML attributes
|
|
1806
|
+
* @param words - Words to be substituted
|
|
1807
|
+
*/
|
|
1808
|
+
ssmlSub(attributes: VoiceResponse.SsmlSubAttributes, words: string): void;
|
|
1809
|
+
/**
|
|
1810
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
1811
|
+
*
|
|
1812
|
+
* @param words - Words to speak
|
|
1813
|
+
*/
|
|
1814
|
+
ssmlW(words: string): VoiceResponse.SsmlW;
|
|
1815
|
+
/**
|
|
1816
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
1817
|
+
*
|
|
1818
|
+
* @param attributes - TwiML attributes
|
|
1819
|
+
* @param words - Words to speak
|
|
1820
|
+
*/
|
|
1821
|
+
ssmlW(attributes: VoiceResponse.SsmlWAttributes, words: string): VoiceResponse.SsmlW;
|
|
1822
|
+
/**
|
|
1823
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
1824
|
+
*
|
|
1825
|
+
* @param words - Words to be substituted
|
|
1826
|
+
*/
|
|
1827
|
+
sub(words: string): void;
|
|
1828
|
+
/**
|
|
1829
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
1830
|
+
*
|
|
1831
|
+
* @param attributes - TwiML attributes
|
|
1832
|
+
* @param words - Words to be substituted
|
|
1833
|
+
*/
|
|
1834
|
+
sub(attributes: VoiceResponse.SsmlSubAttributes, words: string): void;
|
|
1835
|
+
/**
|
|
1836
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
1837
|
+
*
|
|
1838
|
+
* @param words - Words to speak
|
|
1839
|
+
*/
|
|
1840
|
+
w(words: string): VoiceResponse.SsmlW;
|
|
1841
|
+
/**
|
|
1842
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
1843
|
+
*
|
|
1844
|
+
* @param attributes - TwiML attributes
|
|
1845
|
+
* @param words - Words to speak
|
|
1846
|
+
*/
|
|
1847
|
+
w(attributes: VoiceResponse.SsmlWAttributes, words: string): VoiceResponse.SsmlW;
|
|
1848
|
+
}
|
|
1849
|
+
|
|
1850
|
+
|
|
1851
|
+
class SsmlP {
|
|
1852
|
+
|
|
1853
|
+
/**
|
|
1854
|
+
* Adding a Pause in <Say>
|
|
1855
|
+
*
|
|
1856
|
+
* @param attributes - TwiML attributes
|
|
1857
|
+
*/
|
|
1858
|
+
break_(attributes?: VoiceResponse.SsmlBreakAttributes): void;
|
|
1859
|
+
/**
|
|
1860
|
+
* Emphasizing Words in <Say>
|
|
1861
|
+
*
|
|
1862
|
+
* @param words - Words to emphasize
|
|
1863
|
+
*/
|
|
1864
|
+
emphasis(words: string): VoiceResponse.SsmlEmphasis;
|
|
1865
|
+
/**
|
|
1866
|
+
* Emphasizing Words in <Say>
|
|
1867
|
+
*
|
|
1868
|
+
* @param attributes - TwiML attributes
|
|
1869
|
+
* @param words - Words to emphasize
|
|
1870
|
+
*/
|
|
1871
|
+
emphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string): VoiceResponse.SsmlEmphasis;
|
|
1872
|
+
/**
|
|
1873
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
1874
|
+
*
|
|
1875
|
+
* @param words - Words to speak
|
|
1876
|
+
*/
|
|
1877
|
+
lang(words: string): VoiceResponse.SsmlLang;
|
|
1878
|
+
/**
|
|
1879
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
1880
|
+
*
|
|
1881
|
+
* @param attributes - TwiML attributes
|
|
1882
|
+
* @param words - Words to speak
|
|
1883
|
+
*/
|
|
1884
|
+
lang(attributes: VoiceResponse.SsmlLangAttributes, words: string): VoiceResponse.SsmlLang;
|
|
1885
|
+
/**
|
|
1886
|
+
* Using Phonetic Pronunciation in <Say>
|
|
1887
|
+
*
|
|
1888
|
+
* @param words - Words to speak
|
|
1889
|
+
*/
|
|
1890
|
+
phoneme(words: string): void;
|
|
1891
|
+
/**
|
|
1892
|
+
* Using Phonetic Pronunciation in <Say>
|
|
1893
|
+
*
|
|
1894
|
+
* @param attributes - TwiML attributes
|
|
1895
|
+
* @param words - Words to speak
|
|
1896
|
+
*/
|
|
1897
|
+
phoneme(attributes: VoiceResponse.SsmlPhonemeAttributes, words: string): void;
|
|
1898
|
+
/**
|
|
1899
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
1900
|
+
*
|
|
1901
|
+
* @param words - Words to speak
|
|
1902
|
+
*/
|
|
1903
|
+
prosody(words: string): VoiceResponse.SsmlProsody;
|
|
1904
|
+
/**
|
|
1905
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
1906
|
+
*
|
|
1907
|
+
* @param attributes - TwiML attributes
|
|
1908
|
+
* @param words - Words to speak
|
|
1909
|
+
*/
|
|
1910
|
+
prosody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string): VoiceResponse.SsmlProsody;
|
|
1911
|
+
/**
|
|
1912
|
+
* Adding A Pause Between Sentences in <Say>
|
|
1913
|
+
*
|
|
1914
|
+
* @param words - Words to speak
|
|
1915
|
+
*/
|
|
1916
|
+
s(words: string): VoiceResponse.SsmlS;
|
|
1917
|
+
/**
|
|
1918
|
+
* Adding A Pause Between Sentences in <Say>
|
|
1919
|
+
*
|
|
1920
|
+
* @param attributes - TwiML attributes
|
|
1921
|
+
* @param words - Words to speak
|
|
1922
|
+
*/
|
|
1923
|
+
s(attributes: object, words: string): VoiceResponse.SsmlS;
|
|
1924
|
+
/**
|
|
1925
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
1926
|
+
*
|
|
1927
|
+
* @param words - Words to be interpreted
|
|
1928
|
+
*/
|
|
1929
|
+
sayAs(words: string): void;
|
|
1930
|
+
/**
|
|
1931
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
1932
|
+
*
|
|
1933
|
+
* @param attributes - TwiML attributes
|
|
1934
|
+
* @param words - Words to be interpreted
|
|
1935
|
+
*/
|
|
1936
|
+
sayAs(attributes: VoiceResponse.SsmlSayAsAttributes, words: string): void;
|
|
1937
|
+
/**
|
|
1938
|
+
* Adding a Pause in <Say>
|
|
1939
|
+
*
|
|
1940
|
+
* @param attributes - TwiML attributes
|
|
1941
|
+
*/
|
|
1942
|
+
ssmlBreak(attributes?: VoiceResponse.SsmlBreakAttributes): void;
|
|
1943
|
+
/**
|
|
1944
|
+
* Emphasizing Words in <Say>
|
|
1945
|
+
*
|
|
1946
|
+
* @param words - Words to emphasize
|
|
1947
|
+
*/
|
|
1948
|
+
ssmlEmphasis(words: string): VoiceResponse.SsmlEmphasis;
|
|
1949
|
+
/**
|
|
1950
|
+
* Emphasizing Words in <Say>
|
|
1951
|
+
*
|
|
1952
|
+
* @param attributes - TwiML attributes
|
|
1953
|
+
* @param words - Words to emphasize
|
|
1954
|
+
*/
|
|
1955
|
+
ssmlEmphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string): VoiceResponse.SsmlEmphasis;
|
|
1956
|
+
/**
|
|
1957
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
1958
|
+
*
|
|
1959
|
+
* @param words - Words to speak
|
|
1960
|
+
*/
|
|
1961
|
+
ssmlLang(words: string): VoiceResponse.SsmlLang;
|
|
1962
|
+
/**
|
|
1963
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
1964
|
+
*
|
|
1965
|
+
* @param attributes - TwiML attributes
|
|
1966
|
+
* @param words - Words to speak
|
|
1967
|
+
*/
|
|
1968
|
+
ssmlLang(attributes: VoiceResponse.SsmlLangAttributes, words: string): VoiceResponse.SsmlLang;
|
|
1969
|
+
/**
|
|
1970
|
+
* Using Phonetic Pronunciation in <Say>
|
|
1971
|
+
*
|
|
1972
|
+
* @param words - Words to speak
|
|
1973
|
+
*/
|
|
1974
|
+
ssmlPhoneme(words: string): void;
|
|
1975
|
+
/**
|
|
1976
|
+
* Using Phonetic Pronunciation in <Say>
|
|
1977
|
+
*
|
|
1978
|
+
* @param attributes - TwiML attributes
|
|
1979
|
+
* @param words - Words to speak
|
|
1980
|
+
*/
|
|
1981
|
+
ssmlPhoneme(attributes: VoiceResponse.SsmlPhonemeAttributes, words: string): void;
|
|
1982
|
+
/**
|
|
1983
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
1984
|
+
*
|
|
1985
|
+
* @param words - Words to speak
|
|
1986
|
+
*/
|
|
1987
|
+
ssmlProsody(words: string): VoiceResponse.SsmlProsody;
|
|
1988
|
+
/**
|
|
1989
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
1990
|
+
*
|
|
1991
|
+
* @param attributes - TwiML attributes
|
|
1992
|
+
* @param words - Words to speak
|
|
1993
|
+
*/
|
|
1994
|
+
ssmlProsody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string): VoiceResponse.SsmlProsody;
|
|
1995
|
+
/**
|
|
1996
|
+
* Adding A Pause Between Sentences in <Say>
|
|
1997
|
+
*
|
|
1998
|
+
* @param words - Words to speak
|
|
1999
|
+
*/
|
|
2000
|
+
ssmlS(words: string): VoiceResponse.SsmlS;
|
|
2001
|
+
/**
|
|
2002
|
+
* Adding A Pause Between Sentences in <Say>
|
|
2003
|
+
*
|
|
2004
|
+
* @param attributes - TwiML attributes
|
|
2005
|
+
* @param words - Words to speak
|
|
2006
|
+
*/
|
|
2007
|
+
ssmlS(attributes: object, words: string): VoiceResponse.SsmlS;
|
|
2008
|
+
/**
|
|
2009
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
2010
|
+
*
|
|
2011
|
+
* @param words - Words to be interpreted
|
|
2012
|
+
*/
|
|
2013
|
+
ssmlSayAs(words: string): void;
|
|
2014
|
+
/**
|
|
2015
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
2016
|
+
*
|
|
2017
|
+
* @param attributes - TwiML attributes
|
|
2018
|
+
* @param words - Words to be interpreted
|
|
2019
|
+
*/
|
|
2020
|
+
ssmlSayAs(attributes: VoiceResponse.SsmlSayAsAttributes, words: string): void;
|
|
2021
|
+
/**
|
|
2022
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2023
|
+
*
|
|
2024
|
+
* @param words - Words to be substituted
|
|
2025
|
+
*/
|
|
2026
|
+
ssmlSub(words: string): void;
|
|
2027
|
+
/**
|
|
2028
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2029
|
+
*
|
|
2030
|
+
* @param attributes - TwiML attributes
|
|
2031
|
+
* @param words - Words to be substituted
|
|
2032
|
+
*/
|
|
2033
|
+
ssmlSub(attributes: VoiceResponse.SsmlSubAttributes, words: string): void;
|
|
2034
|
+
/**
|
|
2035
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
2036
|
+
*
|
|
2037
|
+
* @param words - Words to speak
|
|
2038
|
+
*/
|
|
2039
|
+
ssmlW(words: string): VoiceResponse.SsmlW;
|
|
2040
|
+
/**
|
|
2041
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
2042
|
+
*
|
|
2043
|
+
* @param attributes - TwiML attributes
|
|
2044
|
+
* @param words - Words to speak
|
|
2045
|
+
*/
|
|
2046
|
+
ssmlW(attributes: VoiceResponse.SsmlWAttributes, words: string): VoiceResponse.SsmlW;
|
|
2047
|
+
/**
|
|
2048
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2049
|
+
*
|
|
2050
|
+
* @param words - Words to be substituted
|
|
2051
|
+
*/
|
|
2052
|
+
sub(words: string): void;
|
|
2053
|
+
/**
|
|
2054
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2055
|
+
*
|
|
2056
|
+
* @param attributes - TwiML attributes
|
|
2057
|
+
* @param words - Words to be substituted
|
|
2058
|
+
*/
|
|
2059
|
+
sub(attributes: VoiceResponse.SsmlSubAttributes, words: string): void;
|
|
2060
|
+
/**
|
|
2061
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
2062
|
+
*
|
|
2063
|
+
* @param words - Words to speak
|
|
2064
|
+
*/
|
|
2065
|
+
w(words: string): VoiceResponse.SsmlW;
|
|
2066
|
+
/**
|
|
2067
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
2068
|
+
*
|
|
2069
|
+
* @param attributes - TwiML attributes
|
|
2070
|
+
* @param words - Words to speak
|
|
2071
|
+
*/
|
|
2072
|
+
w(attributes: VoiceResponse.SsmlWAttributes, words: string): VoiceResponse.SsmlW;
|
|
2073
|
+
}
|
|
2074
|
+
|
|
2075
|
+
|
|
2076
|
+
class SsmlProsody {
|
|
2077
|
+
|
|
2078
|
+
/**
|
|
2079
|
+
* Adding a Pause in <Say>
|
|
2080
|
+
*
|
|
2081
|
+
* @param attributes - TwiML attributes
|
|
2082
|
+
*/
|
|
2083
|
+
break_(attributes?: VoiceResponse.SsmlBreakAttributes): void;
|
|
2084
|
+
/**
|
|
2085
|
+
* Emphasizing Words in <Say>
|
|
2086
|
+
*
|
|
2087
|
+
* @param words - Words to emphasize
|
|
2088
|
+
*/
|
|
2089
|
+
emphasis(words: string): VoiceResponse.SsmlEmphasis;
|
|
2090
|
+
/**
|
|
2091
|
+
* Emphasizing Words in <Say>
|
|
2092
|
+
*
|
|
2093
|
+
* @param attributes - TwiML attributes
|
|
2094
|
+
* @param words - Words to emphasize
|
|
2095
|
+
*/
|
|
2096
|
+
emphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string): VoiceResponse.SsmlEmphasis;
|
|
2097
|
+
/**
|
|
2098
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
2099
|
+
*
|
|
2100
|
+
* @param words - Words to speak
|
|
2101
|
+
*/
|
|
2102
|
+
lang(words: string): VoiceResponse.SsmlLang;
|
|
2103
|
+
/**
|
|
2104
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
2105
|
+
*
|
|
2106
|
+
* @param attributes - TwiML attributes
|
|
2107
|
+
* @param words - Words to speak
|
|
2108
|
+
*/
|
|
2109
|
+
lang(attributes: VoiceResponse.SsmlLangAttributes, words: string): VoiceResponse.SsmlLang;
|
|
2110
|
+
/**
|
|
2111
|
+
* Adding a Pause Between Paragraphs in <Say>
|
|
2112
|
+
*
|
|
2113
|
+
* @param words - Words to speak
|
|
2114
|
+
*/
|
|
2115
|
+
p(words: string): VoiceResponse.SsmlP;
|
|
2116
|
+
/**
|
|
2117
|
+
* Adding a Pause Between Paragraphs in <Say>
|
|
2118
|
+
*
|
|
2119
|
+
* @param attributes - TwiML attributes
|
|
2120
|
+
* @param words - Words to speak
|
|
2121
|
+
*/
|
|
2122
|
+
p(attributes: object, words: string): VoiceResponse.SsmlP;
|
|
2123
|
+
/**
|
|
2124
|
+
* Using Phonetic Pronunciation in <Say>
|
|
2125
|
+
*
|
|
2126
|
+
* @param words - Words to speak
|
|
2127
|
+
*/
|
|
2128
|
+
phoneme(words: string): void;
|
|
2129
|
+
/**
|
|
2130
|
+
* Using Phonetic Pronunciation in <Say>
|
|
2131
|
+
*
|
|
2132
|
+
* @param attributes - TwiML attributes
|
|
2133
|
+
* @param words - Words to speak
|
|
2134
|
+
*/
|
|
2135
|
+
phoneme(attributes: VoiceResponse.SsmlPhonemeAttributes, words: string): void;
|
|
2136
|
+
/**
|
|
2137
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
2138
|
+
*
|
|
2139
|
+
* @param words - Words to speak
|
|
2140
|
+
*/
|
|
2141
|
+
prosody(words: string): VoiceResponse.SsmlProsody;
|
|
2142
|
+
/**
|
|
2143
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
2144
|
+
*
|
|
2145
|
+
* @param attributes - TwiML attributes
|
|
2146
|
+
* @param words - Words to speak
|
|
2147
|
+
*/
|
|
2148
|
+
prosody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string): VoiceResponse.SsmlProsody;
|
|
2149
|
+
/**
|
|
2150
|
+
* Adding A Pause Between Sentences in <Say>
|
|
2151
|
+
*
|
|
2152
|
+
* @param words - Words to speak
|
|
2153
|
+
*/
|
|
2154
|
+
s(words: string): VoiceResponse.SsmlS;
|
|
2155
|
+
/**
|
|
2156
|
+
* Adding A Pause Between Sentences in <Say>
|
|
2157
|
+
*
|
|
2158
|
+
* @param attributes - TwiML attributes
|
|
2159
|
+
* @param words - Words to speak
|
|
2160
|
+
*/
|
|
2161
|
+
s(attributes: object, words: string): VoiceResponse.SsmlS;
|
|
2162
|
+
/**
|
|
2163
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
2164
|
+
*
|
|
2165
|
+
* @param words - Words to be interpreted
|
|
2166
|
+
*/
|
|
2167
|
+
sayAs(words: string): void;
|
|
2168
|
+
/**
|
|
2169
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
2170
|
+
*
|
|
2171
|
+
* @param attributes - TwiML attributes
|
|
2172
|
+
* @param words - Words to be interpreted
|
|
2173
|
+
*/
|
|
2174
|
+
sayAs(attributes: VoiceResponse.SsmlSayAsAttributes, words: string): void;
|
|
2175
|
+
/**
|
|
2176
|
+
* Adding a Pause in <Say>
|
|
2177
|
+
*
|
|
2178
|
+
* @param attributes - TwiML attributes
|
|
2179
|
+
*/
|
|
2180
|
+
ssmlBreak(attributes?: VoiceResponse.SsmlBreakAttributes): void;
|
|
2181
|
+
/**
|
|
2182
|
+
* Emphasizing Words in <Say>
|
|
2183
|
+
*
|
|
2184
|
+
* @param words - Words to emphasize
|
|
2185
|
+
*/
|
|
2186
|
+
ssmlEmphasis(words: string): VoiceResponse.SsmlEmphasis;
|
|
2187
|
+
/**
|
|
2188
|
+
* Emphasizing Words in <Say>
|
|
2189
|
+
*
|
|
2190
|
+
* @param attributes - TwiML attributes
|
|
2191
|
+
* @param words - Words to emphasize
|
|
2192
|
+
*/
|
|
2193
|
+
ssmlEmphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string): VoiceResponse.SsmlEmphasis;
|
|
2194
|
+
/**
|
|
2195
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
2196
|
+
*
|
|
2197
|
+
* @param words - Words to speak
|
|
2198
|
+
*/
|
|
2199
|
+
ssmlLang(words: string): VoiceResponse.SsmlLang;
|
|
2200
|
+
/**
|
|
2201
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
2202
|
+
*
|
|
2203
|
+
* @param attributes - TwiML attributes
|
|
2204
|
+
* @param words - Words to speak
|
|
2205
|
+
*/
|
|
2206
|
+
ssmlLang(attributes: VoiceResponse.SsmlLangAttributes, words: string): VoiceResponse.SsmlLang;
|
|
2207
|
+
/**
|
|
2208
|
+
* Adding a Pause Between Paragraphs in <Say>
|
|
2209
|
+
*
|
|
2210
|
+
* @param words - Words to speak
|
|
2211
|
+
*/
|
|
2212
|
+
ssmlP(words: string): VoiceResponse.SsmlP;
|
|
2213
|
+
/**
|
|
2214
|
+
* Adding a Pause Between Paragraphs in <Say>
|
|
2215
|
+
*
|
|
2216
|
+
* @param attributes - TwiML attributes
|
|
2217
|
+
* @param words - Words to speak
|
|
2218
|
+
*/
|
|
2219
|
+
ssmlP(attributes: object, words: string): VoiceResponse.SsmlP;
|
|
2220
|
+
/**
|
|
2221
|
+
* Using Phonetic Pronunciation in <Say>
|
|
2222
|
+
*
|
|
2223
|
+
* @param words - Words to speak
|
|
2224
|
+
*/
|
|
2225
|
+
ssmlPhoneme(words: string): void;
|
|
2226
|
+
/**
|
|
2227
|
+
* Using Phonetic Pronunciation in <Say>
|
|
2228
|
+
*
|
|
2229
|
+
* @param attributes - TwiML attributes
|
|
2230
|
+
* @param words - Words to speak
|
|
2231
|
+
*/
|
|
2232
|
+
ssmlPhoneme(attributes: VoiceResponse.SsmlPhonemeAttributes, words: string): void;
|
|
2233
|
+
/**
|
|
2234
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
2235
|
+
*
|
|
2236
|
+
* @param words - Words to speak
|
|
2237
|
+
*/
|
|
2238
|
+
ssmlProsody(words: string): VoiceResponse.SsmlProsody;
|
|
2239
|
+
/**
|
|
2240
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
2241
|
+
*
|
|
2242
|
+
* @param attributes - TwiML attributes
|
|
2243
|
+
* @param words - Words to speak
|
|
2244
|
+
*/
|
|
2245
|
+
ssmlProsody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string): VoiceResponse.SsmlProsody;
|
|
2246
|
+
/**
|
|
2247
|
+
* Adding A Pause Between Sentences in <Say>
|
|
2248
|
+
*
|
|
2249
|
+
* @param words - Words to speak
|
|
2250
|
+
*/
|
|
2251
|
+
ssmlS(words: string): VoiceResponse.SsmlS;
|
|
2252
|
+
/**
|
|
2253
|
+
* Adding A Pause Between Sentences in <Say>
|
|
2254
|
+
*
|
|
2255
|
+
* @param attributes - TwiML attributes
|
|
2256
|
+
* @param words - Words to speak
|
|
2257
|
+
*/
|
|
2258
|
+
ssmlS(attributes: object, words: string): VoiceResponse.SsmlS;
|
|
2259
|
+
/**
|
|
2260
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
2261
|
+
*
|
|
2262
|
+
* @param words - Words to be interpreted
|
|
2263
|
+
*/
|
|
2264
|
+
ssmlSayAs(words: string): void;
|
|
2265
|
+
/**
|
|
2266
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
2267
|
+
*
|
|
2268
|
+
* @param attributes - TwiML attributes
|
|
2269
|
+
* @param words - Words to be interpreted
|
|
2270
|
+
*/
|
|
2271
|
+
ssmlSayAs(attributes: VoiceResponse.SsmlSayAsAttributes, words: string): void;
|
|
2272
|
+
/**
|
|
2273
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2274
|
+
*
|
|
2275
|
+
* @param words - Words to be substituted
|
|
2276
|
+
*/
|
|
2277
|
+
ssmlSub(words: string): void;
|
|
2278
|
+
/**
|
|
2279
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2280
|
+
*
|
|
2281
|
+
* @param attributes - TwiML attributes
|
|
2282
|
+
* @param words - Words to be substituted
|
|
2283
|
+
*/
|
|
2284
|
+
ssmlSub(attributes: VoiceResponse.SsmlSubAttributes, words: string): void;
|
|
2285
|
+
/**
|
|
2286
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
2287
|
+
*
|
|
2288
|
+
* @param words - Words to speak
|
|
2289
|
+
*/
|
|
2290
|
+
ssmlW(words: string): VoiceResponse.SsmlW;
|
|
2291
|
+
/**
|
|
2292
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
2293
|
+
*
|
|
2294
|
+
* @param attributes - TwiML attributes
|
|
2295
|
+
* @param words - Words to speak
|
|
2296
|
+
*/
|
|
2297
|
+
ssmlW(attributes: VoiceResponse.SsmlWAttributes, words: string): VoiceResponse.SsmlW;
|
|
2298
|
+
/**
|
|
2299
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2300
|
+
*
|
|
2301
|
+
* @param words - Words to be substituted
|
|
2302
|
+
*/
|
|
2303
|
+
sub(words: string): void;
|
|
2304
|
+
/**
|
|
2305
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2306
|
+
*
|
|
2307
|
+
* @param attributes - TwiML attributes
|
|
2308
|
+
* @param words - Words to be substituted
|
|
2309
|
+
*/
|
|
2310
|
+
sub(attributes: VoiceResponse.SsmlSubAttributes, words: string): void;
|
|
2311
|
+
/**
|
|
2312
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
2313
|
+
*
|
|
2314
|
+
* @param words - Words to speak
|
|
2315
|
+
*/
|
|
2316
|
+
w(words: string): VoiceResponse.SsmlW;
|
|
2317
|
+
/**
|
|
2318
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
2319
|
+
*
|
|
2320
|
+
* @param attributes - TwiML attributes
|
|
2321
|
+
* @param words - Words to speak
|
|
2322
|
+
*/
|
|
2323
|
+
w(attributes: VoiceResponse.SsmlWAttributes, words: string): VoiceResponse.SsmlW;
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2326
|
+
|
|
2327
|
+
class SsmlS {
|
|
2328
|
+
|
|
2329
|
+
/**
|
|
2330
|
+
* Adding a Pause in <Say>
|
|
2331
|
+
*
|
|
2332
|
+
* @param attributes - TwiML attributes
|
|
2333
|
+
*/
|
|
2334
|
+
break_(attributes?: VoiceResponse.SsmlBreakAttributes): void;
|
|
2335
|
+
/**
|
|
2336
|
+
* Emphasizing Words in <Say>
|
|
2337
|
+
*
|
|
2338
|
+
* @param words - Words to emphasize
|
|
2339
|
+
*/
|
|
2340
|
+
emphasis(words: string): VoiceResponse.SsmlEmphasis;
|
|
2341
|
+
/**
|
|
2342
|
+
* Emphasizing Words in <Say>
|
|
2343
|
+
*
|
|
2344
|
+
* @param attributes - TwiML attributes
|
|
2345
|
+
* @param words - Words to emphasize
|
|
2346
|
+
*/
|
|
2347
|
+
emphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string): VoiceResponse.SsmlEmphasis;
|
|
2348
|
+
/**
|
|
2349
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
2350
|
+
*
|
|
2351
|
+
* @param words - Words to speak
|
|
2352
|
+
*/
|
|
2353
|
+
lang(words: string): VoiceResponse.SsmlLang;
|
|
2354
|
+
/**
|
|
2355
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
2356
|
+
*
|
|
2357
|
+
* @param attributes - TwiML attributes
|
|
2358
|
+
* @param words - Words to speak
|
|
2359
|
+
*/
|
|
2360
|
+
lang(attributes: VoiceResponse.SsmlLangAttributes, words: string): VoiceResponse.SsmlLang;
|
|
2361
|
+
/**
|
|
2362
|
+
* Using Phonetic Pronunciation in <Say>
|
|
2363
|
+
*
|
|
2364
|
+
* @param words - Words to speak
|
|
2365
|
+
*/
|
|
2366
|
+
phoneme(words: string): void;
|
|
2367
|
+
/**
|
|
2368
|
+
* Using Phonetic Pronunciation in <Say>
|
|
2369
|
+
*
|
|
2370
|
+
* @param attributes - TwiML attributes
|
|
2371
|
+
* @param words - Words to speak
|
|
2372
|
+
*/
|
|
2373
|
+
phoneme(attributes: VoiceResponse.SsmlPhonemeAttributes, words: string): void;
|
|
2374
|
+
/**
|
|
2375
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
2376
|
+
*
|
|
2377
|
+
* @param words - Words to speak
|
|
2378
|
+
*/
|
|
2379
|
+
prosody(words: string): VoiceResponse.SsmlProsody;
|
|
2380
|
+
/**
|
|
2381
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
2382
|
+
*
|
|
2383
|
+
* @param attributes - TwiML attributes
|
|
2384
|
+
* @param words - Words to speak
|
|
2385
|
+
*/
|
|
2386
|
+
prosody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string): VoiceResponse.SsmlProsody;
|
|
2387
|
+
/**
|
|
2388
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
2389
|
+
*
|
|
2390
|
+
* @param words - Words to be interpreted
|
|
2391
|
+
*/
|
|
2392
|
+
sayAs(words: string): void;
|
|
2393
|
+
/**
|
|
2394
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
2395
|
+
*
|
|
2396
|
+
* @param attributes - TwiML attributes
|
|
2397
|
+
* @param words - Words to be interpreted
|
|
2398
|
+
*/
|
|
2399
|
+
sayAs(attributes: VoiceResponse.SsmlSayAsAttributes, words: string): void;
|
|
2400
|
+
/**
|
|
2401
|
+
* Adding a Pause in <Say>
|
|
2402
|
+
*
|
|
2403
|
+
* @param attributes - TwiML attributes
|
|
2404
|
+
*/
|
|
2405
|
+
ssmlBreak(attributes?: VoiceResponse.SsmlBreakAttributes): void;
|
|
2406
|
+
/**
|
|
2407
|
+
* Emphasizing Words in <Say>
|
|
2408
|
+
*
|
|
2409
|
+
* @param words - Words to emphasize
|
|
2410
|
+
*/
|
|
2411
|
+
ssmlEmphasis(words: string): VoiceResponse.SsmlEmphasis;
|
|
2412
|
+
/**
|
|
2413
|
+
* Emphasizing Words in <Say>
|
|
2414
|
+
*
|
|
2415
|
+
* @param attributes - TwiML attributes
|
|
2416
|
+
* @param words - Words to emphasize
|
|
2417
|
+
*/
|
|
2418
|
+
ssmlEmphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string): VoiceResponse.SsmlEmphasis;
|
|
2419
|
+
/**
|
|
2420
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
2421
|
+
*
|
|
2422
|
+
* @param words - Words to speak
|
|
2423
|
+
*/
|
|
2424
|
+
ssmlLang(words: string): VoiceResponse.SsmlLang;
|
|
2425
|
+
/**
|
|
2426
|
+
* Specifying Another Language for Specific Words in <Say>
|
|
2427
|
+
*
|
|
2428
|
+
* @param attributes - TwiML attributes
|
|
2429
|
+
* @param words - Words to speak
|
|
2430
|
+
*/
|
|
2431
|
+
ssmlLang(attributes: VoiceResponse.SsmlLangAttributes, words: string): VoiceResponse.SsmlLang;
|
|
2432
|
+
/**
|
|
2433
|
+
* Using Phonetic Pronunciation in <Say>
|
|
2434
|
+
*
|
|
2435
|
+
* @param words - Words to speak
|
|
2436
|
+
*/
|
|
2437
|
+
ssmlPhoneme(words: string): void;
|
|
2438
|
+
/**
|
|
2439
|
+
* Using Phonetic Pronunciation in <Say>
|
|
2440
|
+
*
|
|
2441
|
+
* @param attributes - TwiML attributes
|
|
2442
|
+
* @param words - Words to speak
|
|
2443
|
+
*/
|
|
2444
|
+
ssmlPhoneme(attributes: VoiceResponse.SsmlPhonemeAttributes, words: string): void;
|
|
2445
|
+
/**
|
|
2446
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
2447
|
+
*
|
|
2448
|
+
* @param words - Words to speak
|
|
2449
|
+
*/
|
|
2450
|
+
ssmlProsody(words: string): VoiceResponse.SsmlProsody;
|
|
2451
|
+
/**
|
|
2452
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
2453
|
+
*
|
|
2454
|
+
* @param attributes - TwiML attributes
|
|
2455
|
+
* @param words - Words to speak
|
|
2456
|
+
*/
|
|
2457
|
+
ssmlProsody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string): VoiceResponse.SsmlProsody;
|
|
2458
|
+
/**
|
|
2459
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
2460
|
+
*
|
|
2461
|
+
* @param words - Words to be interpreted
|
|
2462
|
+
*/
|
|
2463
|
+
ssmlSayAs(words: string): void;
|
|
2464
|
+
/**
|
|
2465
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
2466
|
+
*
|
|
2467
|
+
* @param attributes - TwiML attributes
|
|
2468
|
+
* @param words - Words to be interpreted
|
|
2469
|
+
*/
|
|
2470
|
+
ssmlSayAs(attributes: VoiceResponse.SsmlSayAsAttributes, words: string): void;
|
|
2471
|
+
/**
|
|
2472
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2473
|
+
*
|
|
2474
|
+
* @param words - Words to be substituted
|
|
2475
|
+
*/
|
|
2476
|
+
ssmlSub(words: string): void;
|
|
2477
|
+
/**
|
|
2478
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2479
|
+
*
|
|
2480
|
+
* @param attributes - TwiML attributes
|
|
2481
|
+
* @param words - Words to be substituted
|
|
2482
|
+
*/
|
|
2483
|
+
ssmlSub(attributes: VoiceResponse.SsmlSubAttributes, words: string): void;
|
|
2484
|
+
/**
|
|
2485
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
2486
|
+
*
|
|
2487
|
+
* @param words - Words to speak
|
|
2488
|
+
*/
|
|
2489
|
+
ssmlW(words: string): VoiceResponse.SsmlW;
|
|
2490
|
+
/**
|
|
2491
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
2492
|
+
*
|
|
2493
|
+
* @param attributes - TwiML attributes
|
|
2494
|
+
* @param words - Words to speak
|
|
2495
|
+
*/
|
|
2496
|
+
ssmlW(attributes: VoiceResponse.SsmlWAttributes, words: string): VoiceResponse.SsmlW;
|
|
2497
|
+
/**
|
|
2498
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2499
|
+
*
|
|
2500
|
+
* @param words - Words to be substituted
|
|
2501
|
+
*/
|
|
2502
|
+
sub(words: string): void;
|
|
2503
|
+
/**
|
|
2504
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2505
|
+
*
|
|
2506
|
+
* @param attributes - TwiML attributes
|
|
2507
|
+
* @param words - Words to be substituted
|
|
2508
|
+
*/
|
|
2509
|
+
sub(attributes: VoiceResponse.SsmlSubAttributes, words: string): void;
|
|
2510
|
+
/**
|
|
2511
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
2512
|
+
*
|
|
2513
|
+
* @param words - Words to speak
|
|
2514
|
+
*/
|
|
2515
|
+
w(words: string): VoiceResponse.SsmlW;
|
|
2516
|
+
/**
|
|
2517
|
+
* Improving Pronunciation by Specifying Parts of Speech in <Say>
|
|
2518
|
+
*
|
|
2519
|
+
* @param attributes - TwiML attributes
|
|
2520
|
+
* @param words - Words to speak
|
|
2521
|
+
*/
|
|
2522
|
+
w(attributes: VoiceResponse.SsmlWAttributes, words: string): VoiceResponse.SsmlW;
|
|
2523
|
+
}
|
|
2524
|
+
|
|
2525
|
+
|
|
2526
|
+
class SsmlW {
|
|
2527
|
+
|
|
2528
|
+
/**
|
|
2529
|
+
* Adding a Pause in <Say>
|
|
2530
|
+
*
|
|
2531
|
+
* @param attributes - TwiML attributes
|
|
2532
|
+
*/
|
|
2533
|
+
break_(attributes?: VoiceResponse.SsmlBreakAttributes): void;
|
|
2534
|
+
/**
|
|
2535
|
+
* Emphasizing Words in <Say>
|
|
2536
|
+
*
|
|
2537
|
+
* @param words - Words to emphasize
|
|
2538
|
+
*/
|
|
2539
|
+
emphasis(words: string): VoiceResponse.SsmlEmphasis;
|
|
2540
|
+
/**
|
|
2541
|
+
* Emphasizing Words in <Say>
|
|
2542
|
+
*
|
|
2543
|
+
* @param attributes - TwiML attributes
|
|
2544
|
+
* @param words - Words to emphasize
|
|
2545
|
+
*/
|
|
2546
|
+
emphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string): VoiceResponse.SsmlEmphasis;
|
|
2547
|
+
/**
|
|
2548
|
+
* Using Phonetic Pronunciation in <Say>
|
|
2549
|
+
*
|
|
2550
|
+
* @param words - Words to speak
|
|
2551
|
+
*/
|
|
2552
|
+
phoneme(words: string): void;
|
|
2553
|
+
/**
|
|
2554
|
+
* Using Phonetic Pronunciation in <Say>
|
|
2555
|
+
*
|
|
2556
|
+
* @param attributes - TwiML attributes
|
|
2557
|
+
* @param words - Words to speak
|
|
2558
|
+
*/
|
|
2559
|
+
phoneme(attributes: VoiceResponse.SsmlPhonemeAttributes, words: string): void;
|
|
2560
|
+
/**
|
|
2561
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
2562
|
+
*
|
|
2563
|
+
* @param words - Words to speak
|
|
2564
|
+
*/
|
|
2565
|
+
prosody(words: string): VoiceResponse.SsmlProsody;
|
|
2566
|
+
/**
|
|
2567
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
2568
|
+
*
|
|
2569
|
+
* @param attributes - TwiML attributes
|
|
2570
|
+
* @param words - Words to speak
|
|
2571
|
+
*/
|
|
2572
|
+
prosody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string): VoiceResponse.SsmlProsody;
|
|
2573
|
+
/**
|
|
2574
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
2575
|
+
*
|
|
2576
|
+
* @param words - Words to be interpreted
|
|
2577
|
+
*/
|
|
2578
|
+
sayAs(words: string): void;
|
|
2579
|
+
/**
|
|
2580
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
2581
|
+
*
|
|
2582
|
+
* @param attributes - TwiML attributes
|
|
2583
|
+
* @param words - Words to be interpreted
|
|
2584
|
+
*/
|
|
2585
|
+
sayAs(attributes: VoiceResponse.SsmlSayAsAttributes, words: string): void;
|
|
2586
|
+
/**
|
|
2587
|
+
* Adding a Pause in <Say>
|
|
2588
|
+
*
|
|
2589
|
+
* @param attributes - TwiML attributes
|
|
2590
|
+
*/
|
|
2591
|
+
ssmlBreak(attributes?: VoiceResponse.SsmlBreakAttributes): void;
|
|
2592
|
+
/**
|
|
2593
|
+
* Emphasizing Words in <Say>
|
|
2594
|
+
*
|
|
2595
|
+
* @param words - Words to emphasize
|
|
2596
|
+
*/
|
|
2597
|
+
ssmlEmphasis(words: string): VoiceResponse.SsmlEmphasis;
|
|
2598
|
+
/**
|
|
2599
|
+
* Emphasizing Words in <Say>
|
|
2600
|
+
*
|
|
2601
|
+
* @param attributes - TwiML attributes
|
|
2602
|
+
* @param words - Words to emphasize
|
|
2603
|
+
*/
|
|
2604
|
+
ssmlEmphasis(attributes: VoiceResponse.SsmlEmphasisAttributes, words: string): VoiceResponse.SsmlEmphasis;
|
|
2605
|
+
/**
|
|
2606
|
+
* Using Phonetic Pronunciation in <Say>
|
|
2607
|
+
*
|
|
2608
|
+
* @param words - Words to speak
|
|
2609
|
+
*/
|
|
2610
|
+
ssmlPhoneme(words: string): void;
|
|
2611
|
+
/**
|
|
2612
|
+
* Using Phonetic Pronunciation in <Say>
|
|
2613
|
+
*
|
|
2614
|
+
* @param attributes - TwiML attributes
|
|
2615
|
+
* @param words - Words to speak
|
|
2616
|
+
*/
|
|
2617
|
+
ssmlPhoneme(attributes: VoiceResponse.SsmlPhonemeAttributes, words: string): void;
|
|
2618
|
+
/**
|
|
2619
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
2620
|
+
*
|
|
2621
|
+
* @param words - Words to speak
|
|
2622
|
+
*/
|
|
2623
|
+
ssmlProsody(words: string): VoiceResponse.SsmlProsody;
|
|
2624
|
+
/**
|
|
2625
|
+
* Controling Volume, Speaking Rate, and Pitch in <Say>
|
|
2626
|
+
*
|
|
2627
|
+
* @param attributes - TwiML attributes
|
|
2628
|
+
* @param words - Words to speak
|
|
2629
|
+
*/
|
|
2630
|
+
ssmlProsody(attributes: VoiceResponse.SsmlProsodyAttributes, words: string): VoiceResponse.SsmlProsody;
|
|
2631
|
+
/**
|
|
2632
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
2633
|
+
*
|
|
2634
|
+
* @param words - Words to be interpreted
|
|
2635
|
+
*/
|
|
2636
|
+
ssmlSayAs(words: string): void;
|
|
2637
|
+
/**
|
|
2638
|
+
* Controlling How Special Types of Words Are Spoken in <Say>
|
|
2639
|
+
*
|
|
2640
|
+
* @param attributes - TwiML attributes
|
|
2641
|
+
* @param words - Words to be interpreted
|
|
2642
|
+
*/
|
|
2643
|
+
ssmlSayAs(attributes: VoiceResponse.SsmlSayAsAttributes, words: string): void;
|
|
2644
|
+
/**
|
|
2645
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2646
|
+
*
|
|
2647
|
+
* @param words - Words to be substituted
|
|
2648
|
+
*/
|
|
2649
|
+
ssmlSub(words: string): void;
|
|
2650
|
+
/**
|
|
2651
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2652
|
+
*
|
|
2653
|
+
* @param attributes - TwiML attributes
|
|
2654
|
+
* @param words - Words to be substituted
|
|
2655
|
+
*/
|
|
2656
|
+
ssmlSub(attributes: VoiceResponse.SsmlSubAttributes, words: string): void;
|
|
2657
|
+
/**
|
|
2658
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2659
|
+
*
|
|
2660
|
+
* @param words - Words to be substituted
|
|
2661
|
+
*/
|
|
2662
|
+
sub(words: string): void;
|
|
2663
|
+
/**
|
|
2664
|
+
* Pronouncing Acronyms and Abbreviations in <Say>
|
|
2665
|
+
*
|
|
2666
|
+
* @param attributes - TwiML attributes
|
|
2667
|
+
* @param words - Words to be substituted
|
|
2668
|
+
*/
|
|
2669
|
+
sub(attributes: VoiceResponse.SsmlSubAttributes, words: string): void;
|
|
2670
|
+
}
|
|
2671
|
+
|
|
2672
|
+
|
|
1401
2673
|
class Start {
|
|
1402
2674
|
|
|
1403
2675
|
/**
|