@@ -47,7 +47,7 @@ public class CreateCallRequest {
47
47
private OptionalNullable <String > tag ;
48
48
private String applicationId ;
49
49
@ JsonInclude (JsonInclude .Include .NON_NULL )
50
- private MachineDetectionRequest machineDetection ;
50
+ private MachineDetectionConfiguration machineDetection ;
51
51
52
52
/**
53
53
* Default constructor.
@@ -74,7 +74,7 @@ public CreateCallRequest() {
74
74
* @param disconnectUrl String value for disconnectUrl.
75
75
* @param disconnectMethod DisconnectMethodEnum value for disconnectMethod.
76
76
* @param tag String value for tag.
77
- * @param machineDetection MachineDetectionRequest value for machineDetection.
77
+ * @param machineDetection MachineDetectionConfiguration value for machineDetection.
78
78
*/
79
79
public CreateCallRequest (
80
80
String from ,
@@ -94,7 +94,7 @@ public CreateCallRequest(
94
94
String disconnectUrl ,
95
95
DisconnectMethodEnum disconnectMethod ,
96
96
String tag ,
97
- MachineDetectionRequest machineDetection ) {
97
+ MachineDetectionConfiguration machineDetection ) {
98
98
this .from = from ;
99
99
this .to = to ;
100
100
this .uui = OptionalNullable .of (uui );
@@ -127,7 +127,7 @@ protected CreateCallRequest(String from, String to, String answerUrl, String app
127
127
OptionalNullable <AnswerFallbackMethodEnum > answerFallbackMethod ,
128
128
OptionalNullable <String > disconnectUrl ,
129
129
OptionalNullable <DisconnectMethodEnum > disconnectMethod , OptionalNullable <String > tag ,
130
- MachineDetectionRequest machineDetection ) {
130
+ MachineDetectionConfiguration machineDetection ) {
131
131
this .from = from ;
132
132
this .to = to ;
133
133
this .uui = uui ;
@@ -684,10 +684,10 @@ public void setApplicationId(String applicationId) {
684
684
685
685
/**
686
686
* Getter for MachineDetection.
687
- * @return Returns the MachineDetectionRequest
687
+ * @return Returns the MachineDetectionConfiguration
688
688
*/
689
689
@ JsonGetter ("machineDetection" )
690
- public MachineDetectionRequest getMachineDetection () {
690
+ public MachineDetectionConfiguration getMachineDetection () {
691
691
return machineDetection ;
692
692
}
693
693
@@ -696,7 +696,7 @@ public MachineDetectionRequest getMachineDetection() {
696
696
* @param machineDetection Value for MachineDetectionRequest
697
697
*/
698
698
@ JsonSetter ("machineDetection" )
699
- public void setMachineDetection (MachineDetectionRequest machineDetection ) {
699
+ public void setMachineDetection (MachineDetectionConfiguration machineDetection ) {
700
700
this .machineDetection = machineDetection ;
701
701
}
702
702
@@ -762,7 +762,7 @@ public static class Builder {
762
762
private OptionalNullable <String > disconnectUrl ;
763
763
private OptionalNullable <DisconnectMethodEnum > disconnectMethod ;
764
764
private OptionalNullable <String > tag ;
765
- private MachineDetectionRequest machineDetection ;
765
+ private MachineDetectionConfiguration machineDetection ;
766
766
767
767
/**
768
768
* Initialization constructor.
@@ -1073,10 +1073,10 @@ public Builder unsetTag() {
1073
1073
1074
1074
/**
1075
1075
* Setter for machineDetection.
1076
- * @param machineDetection MachineDetectionRequest value for machineDetection.
1076
+ * @param machineDetection MachineDetectionConfiguration value for machineDetection.
1077
1077
* @return Builder
1078
1078
*/
1079
- public Builder machineDetection (MachineDetectionRequest machineDetection ) {
1079
+ public Builder machineDetection (MachineDetectionConfiguration machineDetection ) {
1080
1080
this .machineDetection = machineDetection ;
1081
1081
return this ;
1082
1082
}
0 commit comments