TokenInfoResponse

public final class TokenInfoResponse

Constructors

Link copied to clipboard
public TokenInfoResponse TokenInfoResponse(@Json(name = "iss") String iss, @Json(name = "aud") String aud, @Json(name = "iat") Integer iat, @Json(name = "exp") Integer exp, @Json(name = "sub") String sub, @Json(name = "email") String email)

Properties

Link copied to clipboard
private final String aud

The token's audience.

Link copied to clipboard
private final String email

The email address of the Grant belonging to the user's token.

Link copied to clipboard
private final Integer exp

The time that the token expires.

Link copied to clipboard
private final Integer iat

The time that the token was issued.

Link copied to clipboard
private final String iss

The issuer of the token.

Link copied to clipboard
private final String sub

The token's subject.

Functions

Link copied to clipboard
public final String getAud()

The token's audience.

Link copied to clipboard
public final String getEmail()

The email address of the Grant belonging to the user's token.

Link copied to clipboard
public final Integer getExp()

The time that the token expires.

Link copied to clipboard
public final Integer getIat()

The time that the token was issued.

Link copied to clipboard
public final String getIss()

The issuer of the token.

Link copied to clipboard
public final String getSub()

The token's subject.