com.duosecurity.model.Token Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of duo-universal-sdk Show documentation
Show all versions of duo-universal-sdk Show documentation
Duo Web SDK for two-factor authentication
package com.duosecurity.model;
import java.io.Serializable;
import lombok.Data;
@Data
public class Token implements Serializable {
private static final long serialVersionUID = -8768823399834806194L;
private String iss;
private String sub;
private String preferred_username;
private String aud;
private Integer exp;
private Double iat;
private Integer auth_time;
private AuthResult auth_result;
private AuthContext auth_context;
}