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

com.chargebee.Result Maven / Gradle / Ivy

There is a newer version: 3.28.0
Show newest version
package com.chargebee;

import com.chargebee.internal.ResultBase;
import org.json.JSONObject;

public class Result extends ResultBase implements ApiResponse {

    public final int httpCode;

    public Result(int httpCode, JSONObject jsonObj) {
        super(jsonObj);
        this.httpCode = httpCode;
    }

    public int httpCode() {
        return httpCode;
    }

    public JSONObject jsonResponse() {
        return jsonObj();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy