com.chargebee.ApiResponse 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
/*
* Copyright (c) 2017 ChargeBee Inc
* All Rights Reserved.
*/
package com.chargebee;
import org.json.JSONObject;
/**
*
* @author cb-ajit
*/
public interface ApiResponse {
public int httpCode();
public JSONObject jsonResponse();
}