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

com.razorpay.RefundClient Maven / Gradle / Ivy

package com.razorpay;

import java.util.List;

import org.json.JSONObject;

public class RefundClient extends ApiClient {

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

  public Refund create(JSONObject request) throws RazorpayException {
    return post(Constants.REFUND_CREATE, request);
  }

  public List fetchAll(JSONObject request) throws RazorpayException {
    return getCollection(Constants.REFUND_LIST, request);
  }

  public Refund fetch(String id) throws RazorpayException {
    return get(String.format(Constants.REFUND_GET, id), null);
  }

  public List fetchAll() throws RazorpayException {
    return fetchAll(null);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy