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

com.zipwhip.api.response.ObjectServerResponse Maven / Gradle / Ivy

The newest version!
package com.zipwhip.api.response;

import com.zipwhip.api.signals.Signal;
import org.json.JSONObject;

import java.util.List;
import java.util.Map;

/**
 * Represents a JSON Object ServerResponse.
 */
public class ObjectServerResponse extends ServerResponse {

    public JSONObject response;

    public ObjectServerResponse(String raw, boolean success, JSONObject response, Map>> sessions) {
        super(raw, success, sessions);
        this.response = response;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy