io.polyapi.client.api.AuthTokenOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of library Show documentation
Show all versions of library Show documentation
Java client library for Poly API
The newest version!
package io.polyapi.client.api;
import lombok.Getter;
import lombok.Setter;
@Setter
@Getter
public class AuthTokenOptions {
private String callbackUrl;
private Integer timeout;
private String audience;
private Boolean autoCloseOnToken;
private Boolean autoCloseOnUrl;
private String userId;
}