Skip to content

Commit

Permalink
Changed the datatypes for generatePinLength, pinRetry, and pinRetryWait.
Browse files Browse the repository at this point in the history
  • Loading branch information
JayaBharat-plivo committed Sep 18, 2024
1 parent 5e7bca5 commit c767a8d
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ public class MaskingSessionCreator extends VoiceCreator<MaskingSessionCreateResp
private boolean generatePin;
private boolean record;
private int ringTimeout;
private Integer generatePinLength = null;
private int pinRetry;
private Integer pinRetryWait = null;
private Integer generatePinLength;
private Integer pinRetry;
private Integer pinRetryWait;
private int sessionExpiry;
private int callTimeLimit;
private boolean createSessionWithSingleParty;
Expand Down Expand Up @@ -189,10 +189,10 @@ public MaskingSessionCreator generatePinLength(final Integer generatePinLength)
this.generatePinLength = generatePinLength;
return this;
}
public int pinRetry() {
public Integer pinRetry() {
return this.pinRetry;
}
public MaskingSessionCreator pinRetry(final int pinRetry) {
public MaskingSessionCreator pinRetry(final Integer pinRetry) {
this.pinRetry = pinRetry;
return this;
}
Expand Down

0 comments on commit c767a8d

Please sign in to comment.