cn.authing.sdk.java.dto.VerifyAuthenticationResultDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authing-java-sdk Show documentation
Show all versions of authing-java-sdk Show documentation
java backend sdk for authing
package cn.authing.sdk.java.dto;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import cn.authing.sdk.java.dto.LoginTokenResponseDataDto;
public class VerifyAuthenticationResultDto {
/**
* 验证认证器登录认证的结果,true 验证成功
*/
@JsonProperty("verified")
private Boolean verified;
/**
* 验证认证器登录认证通过时,即 verified = true,此数据才会返回。
*/
@JsonProperty("tokenSet")
private LoginTokenResponseDataDto tokenSet;
public Boolean getVerified() {
return verified;
}
public void setVerified(Boolean verified) {
this.verified = verified;
}
public LoginTokenResponseDataDto getTokenSet() {
return tokenSet;
}
public void setTokenSet(LoginTokenResponseDataDto tokenSet) {
this.tokenSet = tokenSet;
}
}