co.omise.resources.AccountResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of omise-java Show documentation
Show all versions of omise-java Show documentation
Java bindings for the Omise API
package co.omise.resources;
import co.omise.Endpoint;
import co.omise.models.Account;
import okhttp3.OkHttpClient;
import java.io.IOException;
public class AccountResource extends Resource {
public AccountResource(OkHttpClient httpClient) {
super(httpClient);
}
public Account get() throws IOException {
return httpGet(buildUrl(Endpoint.API, "account")).returns(Account.class);
}
}