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

co.omise.resources.RefundResource 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.Refund;
import co.omise.models.ScopedList;
import com.fasterxml.jackson.core.type.TypeReference;
import okhttp3.HttpUrl;
import okhttp3.OkHttpClient;

import java.io.IOException;

public class RefundResource extends Resource {
    private final String chargeId;

    protected RefundResource(OkHttpClient httpClient, String chargeId) {
        super(httpClient);
        this.chargeId = chargeId;
    }

    public ScopedList list() throws IOException {
        return list(new ScopedList.Options());
    }

    public ScopedList list(ScopedList.Options options) throws IOException {
        return httpGet(urlFor("")).params(options).returns(new TypeReference>() {
        });
    }

    public Refund get(String refundId) throws IOException {
        return httpGet(urlFor(refundId)).returns(Refund.class);
    }

    public Refund create(Refund.Create params) throws IOException {
        return httpPost(urlFor("")).params(params).returns(Refund.class);
    }

    private HttpUrl urlFor(String refundId) {
        return buildUrl(Endpoint.API, "charges", chargeId, "refunds", refundId);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy