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

com.razorpay.DocumentClient Maven / Gradle / Ivy

package com.razorpay;

import org.json.JSONObject;

public class DocumentClient extends ApiClient {

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

    public Document create(JSONObject request) throws RazorpayException {
        return post(Constants.VERSION, Constants.DOCUMENTS, request);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy