
com.iobeam.api.auth.TokenRefresh Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iobeam-client-java Show documentation
Show all versions of iobeam-client-java Show documentation
Java client library for the iobeam REST API.
package com.iobeam.api.auth;
import com.iobeam.api.resource.annotations.JsonProperty;
import java.io.Serializable;
public class TokenRefresh implements Serializable {
private final String token;
public TokenRefresh(String oldToken) {
this.token = oldToken;
}
@JsonProperty("refresh_token")
public String getRefreshToken() {
return token;
}
@Override
public String toString() {
return "TokenRefresh{" +
"refresh_token='" + token + "'" +
"}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy