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 {

    public final int httpCode;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy