com.duosecurity.model.TokenResponse 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 TokenResponse implements Serializable {
private static final long serialVersionUID = -3138823399834806194L;
private String id_token;
private String access_token;
private String token_type;
private Integer expires_in;
}