You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Set to true so this action is terminated when the user presses a button on the keypad.
11
-
/// Use this feature to enable users to choose an option without having to listen to the whole message
12
-
/// in your Interactive Voice Response (IVR ). If you set bargeIn to true on one more Stream actions then
13
-
/// the next non-stream action in the NCCO stack must be an input action. The default value is false.
14
-
/// Once bargeIn is set to true it will stay true (even if bargeIn: false is set in a following action)
15
-
/// until an input action is encountered
31
+
/// Set to true so this action is terminated when the user presses a button on the keypad.
32
+
/// Use this feature to enable users to choose an option without having to listen to the whole message
33
+
/// in your Interactive Voice Response (IVR ). If you set bargeIn to true on one more Stream actions then
34
+
/// the next non-stream action in the NCCO stack must be an input action. The default value is false.
35
+
/// Once bargeIn is set to true it will stay true (even if bargeIn: false is set in a following action)
36
+
/// until an input action is encountered
16
37
/// </summary>
17
38
[JsonProperty("bargeIn",Order=2)]
18
39
publicboolBargeIn{get;set;}
19
40
20
41
/// <summary>
21
-
/// The language (<see href="https://tools.ietf.org/html/bcp47">BCP-47</see>format) for the message you are sending. Default: en-US. Possible values are listed in the <see href="https://developer.nexmo.com/voice/voice-api/guides/text-to-speech#supported-languages">Text-To-Speech guide</see>.
42
+
/// The language (<see href="https://tools.ietf.org/html/bcp47">BCP-47</see>format) for the message you are sending.
43
+
/// Default: en-US. Possible values are listed in the
/// The volume level that the speech is played. This can be any value between -1 to 1 with 0 being the default.
54
+
/// The volume level that the speech is played. This can be any value between -1 to 1 with 0 being the default.
28
55
/// </summary>
29
56
[JsonProperty("level",Order=4)]
30
57
publicstringLevel{get;set;}
31
58
32
59
/// <summary>
33
-
/// The number of times text is repeated before the Call is closed. The default value is 1. Set to 0 to loop infinitely.
60
+
/// The number of times text is repeated before the Call is closed. The default value is 1. Set to 0 to loop
61
+
/// infinitely.
34
62
/// </summary>
35
63
[JsonProperty("loop",Order=3)]
36
64
publicstringLoop{get;set;}
@@ -43,17 +71,83 @@ public class TalkAction : NccoAction
43
71
publicboolPremium{get;set;}
44
72
45
73
/// <summary>
46
-
/// The vocal style (vocal range, tessitura and timbre). Default: 0. Possible values are listed in the <see href="https://developer.nexmo.com/voice/voice-api/guides/text-to-speech#supported-languages">Text-To-Speech guide</see>.
74
+
/// The vocal style (vocal range, tessitura and timbre). Default: 0. Possible values are listed in the
0 commit comments