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

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

There is a newer version: 5.1.0
Show newest version
package co.omise.resources;

import okhttp3.OkHttpClient;

public class CustomerSpecificResource extends Resource {
    private final String customerId;

    private final CardResource cards;

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

    public CardResource cards() {
        return cards;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy