br.com.moip.api.AccountAPI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for Moip v2 APIs
package br.com.moip.api;
import br.com.moip.Client;
import br.com.moip.resource.Account;
public class AccountAPI {
private final Client client;
public AccountAPI(final Client client) {
this.client = client;
}
public Account get() {
return client.get("/v2/accounts", Account.class);
}
}