com.razorpay.InvoiceClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of razorpay-java Show documentation
Show all versions of razorpay-java Show documentation
Official java bindings for the Razorpay API
package com.razorpay;
import java.util.List;
import org.json.JSONObject;
public class InvoiceClient extends ApiClient {
InvoiceClient(String auth) {
super(auth);
}
public Invoice create(JSONObject request) throws RazorpayException {
return post(Constants.INVOICE_CREATE, request);
}
public List fetchAll() throws RazorpayException {
return fetchAll(null);
}
public List fetchAll(JSONObject request) throws RazorpayException {
return getCollection(Constants.INVOICE_LIST, request);
}
public Invoice fetch(String id) throws RazorpayException {
return get(String.format(Constants.INVOICE_GET, id), null);
}
}