We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6f6de8 commit 2f8ecdeCopy full SHA for 2f8ecde
1 file changed
yoti-sdk-auth/src/main/java/com/yoti/auth/CreateAuthenticationTokenResponse.java
@@ -1,10 +1,19 @@
1
package com.yoti.auth;
2
3
+import com.fasterxml.jackson.annotation.JsonProperty;
4
+
5
public final class CreateAuthenticationTokenResponse {
6
7
+ @JsonProperty("access_token")
8
private String accessToken;
9
10
+ @JsonProperty("token_type")
11
private String tokenType;
12
13
+ @JsonProperty("expires_in")
14
private Integer expiresIn;
15
16
+ @JsonProperty("scope")
17
private String scope;
18
19
/**
0 commit comments