cn.authing.sdk.java.dto.IntrospectTokenRespDto 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 com.fasterxml.jackson.annotation.JsonProperty;
public class IntrospectTokenRespDto {
@JsonProperty("active")
private Boolean active;
@JsonProperty("sub")
private String sub;
@JsonProperty("client_id")
private String clientId;
@JsonProperty("exp")
private Long exp;
@JsonProperty("iat")
private Long iat;
@JsonProperty("iss")
private String iss;
@JsonProperty("jti")
private String jti;
@JsonProperty("scope")
private String scope;
@JsonProperty("token_type")
private String tokenType;
public Boolean getActive() {
return active;
}
public void setActive(Boolean active) {
this.active = active;
}
public String getSub() {
return sub;
}
public void setSub(String sub) {
this.sub = sub;
}
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public Long getExp() {
return exp;
}
public void setExp(Long exp) {
this.exp = exp;
}
public Long getIat() {
return iat;
}
public void setIat(Long iat) {
this.iat = iat;
}
public String getIss() {
return iss;
}
public void setIss(String iss) {
this.iss = iss;
}
public String getJti() {
return jti;
}
public void setJti(String jti) {
this.jti = jti;
}
public String getScope() {
return scope;
}
public void setScope(String scope) {
this.scope = scope;
}
public String getTokenType() {
return tokenType;
}
public void setTokenType(String tokenType) {
this.tokenType = tokenType;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy