Skip to content

Commit 45aaecc

Browse files
committed
maxAttempts param in VerifyRequest
1 parent ec55bf7 commit 45aaecc

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

api/src/main/java/com/messagebird/objects/VerifyRequest.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public class VerifyRequest implements Serializable {
1515
private String template;
1616
private Integer timeout;
1717
private Integer tokenLength;
18+
private Integer maxAttempts;
1819
private Gender voice;
1920
private Language language;
2021
private String subject;
@@ -124,4 +125,12 @@ public void setSubject(String subject) {
124125
public String getSubject() {
125126
return subject;
126127
}
128+
129+
public Integer getMaxAttempts() {
130+
return maxAttempts;
131+
}
132+
133+
public void setMaxAttempts(Integer maxAttempts) {
134+
this.maxAttempts = maxAttempts;
135+
}
127136
}

0 commit comments

Comments
 (0)