com.chargebee.Result Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chargebee-java Show documentation
Show all versions of chargebee-java Show documentation
Java client library for ChargeBee API
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