We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ec55bf7 + 45aaecc commit 662c11dCopy full SHA for 662c11d
api/src/main/java/com/messagebird/objects/VerifyRequest.java
@@ -15,6 +15,7 @@ public class VerifyRequest implements Serializable {
15
private String template;
16
private Integer timeout;
17
private Integer tokenLength;
18
+ private Integer maxAttempts;
19
private Gender voice;
20
private Language language;
21
private String subject;
@@ -124,4 +125,12 @@ public void setSubject(String subject) {
124
125
public String getSubject() {
126
return subject;
127
}
128
+
129
+ public Integer getMaxAttempts() {
130
+ return maxAttempts;
131
+ }
132
133
+ public void setMaxAttempts(Integer maxAttempts) {
134
+ this.maxAttempts = maxAttempts;
135
136
0 commit comments