File tree 1 file changed +19
-1
lines changed
api/src/main/java/com/messagebird/objects
1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ public class VoiceStepOption implements Serializable {
24
24
private int machineTimeout ;
25
25
private String onFinish ;
26
26
private boolean mask ;
27
+ private String keys ;
28
+ private int duration ;
29
+ private int interval ;
27
30
28
31
public String getDestination () {
29
32
return destination ;
@@ -169,6 +172,18 @@ public void setMask(boolean mask) {
169
172
this .mask = mask ;
170
173
}
171
174
175
+ public String getKeys () { return keys ; }
176
+
177
+ public void setKeys (String keys ) { this .keys = keys ; }
178
+
179
+ public int getDuration () { return duration ; }
180
+
181
+ public void setDuration (int duration ) { this .duration = duration ; }
182
+
183
+ public int getInterval () { return interval ; }
184
+
185
+ public void setInterval (int interval ) { this .interval = interval ; }
186
+
172
187
@ Override
173
188
public String toString () {
174
189
return "VoiceStepOption{" +
@@ -189,7 +204,10 @@ public String toString() {
189
204
", ifMachine='" + ifMachine + '\'' +
190
205
", machineTimeout=" + machineTimeout +
191
206
", onFinish='" + onFinish + '\'' +
192
- ", mask=" + mask +
207
+ ", mask=" + mask + '\'' +
208
+ ", keys='" + keys + '\'' +
209
+ ", interval='" + interval + '\'' +
210
+ ", duration='" + duration +
193
211
'}' ;
194
212
}
195
213
}
You can’t perform that action at this time.
0 commit comments