@@ -46,6 +46,10 @@ public SmartCallRequest()
46
46
47
47
private bool ? earlyMediaAsr ;
48
48
49
+ private int ? backgroundSpeed ;
50
+
51
+ private int ? backgroundVolume ;
52
+
49
53
private int ? speed ;
50
54
51
55
private string asrBaseId ;
@@ -62,6 +66,8 @@ public SmartCallRequest()
62
66
63
67
private string calledShowNumber ;
64
68
69
+ private bool ? enableITN ;
70
+
65
71
private int ? actionCodeTimeBreak ;
66
72
67
73
private bool ? ttsConf ;
@@ -82,6 +88,8 @@ public SmartCallRequest()
82
88
83
89
private int ? muteTime ;
84
90
91
+ private string backgroundFileCode ;
92
+
85
93
private string outId ;
86
94
87
95
private string asrModelId ;
@@ -129,6 +137,32 @@ public bool? EarlyMediaAsr
129
137
}
130
138
}
131
139
140
+ public int ? BackgroundSpeed
141
+ {
142
+ get
143
+ {
144
+ return backgroundSpeed ;
145
+ }
146
+ set
147
+ {
148
+ backgroundSpeed = value ;
149
+ DictionaryUtil . Add ( QueryParameters , "BackgroundSpeed" , value . ToString ( ) ) ;
150
+ }
151
+ }
152
+
153
+ public int ? BackgroundVolume
154
+ {
155
+ get
156
+ {
157
+ return backgroundVolume ;
158
+ }
159
+ set
160
+ {
161
+ backgroundVolume = value ;
162
+ DictionaryUtil . Add ( QueryParameters , "BackgroundVolume" , value . ToString ( ) ) ;
163
+ }
164
+ }
165
+
132
166
public int ? Speed
133
167
{
134
168
get
@@ -233,6 +267,19 @@ public string CalledShowNumber
233
267
}
234
268
}
235
269
270
+ public bool ? EnableITN
271
+ {
272
+ get
273
+ {
274
+ return enableITN ;
275
+ }
276
+ set
277
+ {
278
+ enableITN = value ;
279
+ DictionaryUtil . Add ( QueryParameters , "EnableITN" , value . ToString ( ) ) ;
280
+ }
281
+ }
282
+
236
283
public int ? ActionCodeTimeBreak
237
284
{
238
285
get
@@ -363,6 +410,19 @@ public int? MuteTime
363
410
}
364
411
}
365
412
413
+ public string BackgroundFileCode
414
+ {
415
+ get
416
+ {
417
+ return backgroundFileCode ;
418
+ }
419
+ set
420
+ {
421
+ backgroundFileCode = value ;
422
+ DictionaryUtil . Add ( QueryParameters , "BackgroundFileCode" , value ) ;
423
+ }
424
+ }
425
+
366
426
public string OutId
367
427
{
368
428
get
0 commit comments