Skip to content

Commit 1b68fb3

Browse files
authored
Add challenge expiresAt response field (#34)
* Add expiresAt field to ChallengeResponse and update type to Long * Bump version to 2.8.0
1 parent a133f60 commit 1b68fb3

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=2.7.0
1+
version=2.8.0

src/main/java/com/authsignal/model/ChallengeResponse.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
public class ChallengeResponse extends ApiModel {
44
public String challengeId;
5+
public Long expiresAt;
56
}

src/main/java/com/authsignal/model/GetChallengeResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public class GetChallengeResponse extends ApiModel {
44
public String challengeId;
5-
public Integer expiresAt;
5+
public Long expiresAt;
66
public VerificationMethodType verificationMethod;
77
public SmsChannel smsChannel;
88
public String phoneNumber;

0 commit comments

Comments
 (0)