All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.moip.api.AccountAPI Maven / Gradle / Ivy

There is a newer version: 4.7.6
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy