com.github.revenuemonster.Environment 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;
import com.github.revenuemonster.env.env;
public class Environment {
public void setEnvironment(String clientId,String clientSecret,String environment){
env.clientId = clientId;
env.clientSecret = clientSecret;
env.environment = environment;
}
public void setAccessToken(String accessToken){
env.accessToken = accessToken;
}
public void setRefreshToken(String refreshToken){
env.refreshToken = refreshToken;
}
public void setPrivateKey(String privateKey){
env.privateKey = privateKey;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy