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

com.razorpay.IinClient Maven / Gradle / Ivy

The newest version!
package com.razorpay;

import org.json.JSONObject;

public class IinClient extends ApiClient{

    IinClient(String auth) {
        super(auth);
    }

    public Iin fetch(String id) throws RazorpayException {
        return get(Constants.VERSION, String.format(Constants.IIN_FETCH, id), null);
    }

    public Iin fetchList(JSONObject request) throws RazorpayException {
        return get(Constants.VERSION, String.format(Constants.IIN_FETCH_LIST), request);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy