All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.duosecurity.model.Token Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version
package com.duosecurity.model;

import lombok.Data;

@Data
public class Token {
  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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy