com.github.revenuemonster.model.ClientCredentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of RevenueMonsterOpenAPI Show documentation
Show all versions of RevenueMonsterOpenAPI Show documentation
This is an Java SDK that maps some of the RESTful methods of Open API that are documented at doc.revenuemonster.my
The newest version!
package com.github.revenuemonster.model;
import java.io.Serializable;
public class ClientCredentials implements Serializable {
public String accessToken;
public String tokenType;
public Integer expiresIn;
public String refreshToken;
public Error error;
// Getter Methods
public String getAccessToken() {
return accessToken;
}
public String getTokenType() {
return tokenType;
}
public float getExpiresIn() {
return expiresIn;
}
public String getRefreshToken() {
return refreshToken;
}
// Setter Methods
public void setAccessToken(String accessToken) {
this.accessToken = accessToken;
}
public void setTokenType(String tokenType) {
this.tokenType = tokenType;
}
public void setExpiresIn(Integer expiresIn) {
this.expiresIn = expiresIn;
}
public void setRefreshToken(String refreshToken) {
this.refreshToken = refreshToken;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy