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

co.omise.resources.AccountResource Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy