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

com.razorpay.PlanClient Maven / Gradle / Ivy

There is a newer version: 1.4.7
Show newest version
package com.razorpay;

import java.util.List;

import org.json.JSONObject;

public class PlanClient extends ApiClient {

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy