Add CustomFriendlyName parameter to Twilio Verify requests

This commit is contained in:
Chris Eager
2021-04-19 17:53:50 -05:00
committed by Chris Eager
parent 6c37b658ac
commit 5ee56b022c
4 changed files with 25 additions and 6 deletions

View File

@@ -55,6 +55,9 @@ public class TwilioConfiguration {
@NotEmpty
private String androidAppHash;
@NotEmpty
private String verifyServiceFriendlyName;
public String getAccountId() {
return accountId;
}
@@ -178,4 +181,12 @@ public class TwilioConfiguration {
public void setAndroidAppHash(String androidAppHash) {
this.androidAppHash = androidAppHash;
}
public void setVerifyServiceFriendlyName(String serviceFriendlyName) {
this.verifyServiceFriendlyName = serviceFriendlyName;
}
public String getVerifyServiceFriendlyName() {
return verifyServiceFriendlyName;
}
}