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

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

import java.io.IOException;

public class CardResource extends Resource {
    private final String customerId;

    public CardResource(OkHttpClient httpClient, String customerId) {
        super(httpClient);
        this.customerId = customerId;
    }

    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 Card get(String cardId) throws IOException {
        return httpGet(urlFor(cardId)).returns(Card.class);
    }

    public Card update(String cardId, Card.Update update) throws IOException {
        return httpPatch(urlFor(cardId)).params(update).returns(Card.class);
    }

    public Card destroy(String cardId) throws IOException {
        return httpDelete(urlFor(cardId)).returns(Card.class);
    }

    private HttpUrl urlFor(String cardId) {
        return buildUrl(Endpoint.API, "customers", customerId, "cards", cardId);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy