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

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

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

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

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

/**
 * Created by IntelliJ IDEA.
 * Date: Jul 20, 2009
 * Time: 5:41:19 PM
 * 

* Represents an Array of data. */ public class ArrayServerResponse extends ServerResponse { public JSONArray response; public ArrayServerResponse(String raw, boolean success, JSONArray response, Map>> sessions) { super(raw, success, sessions); this.response = response; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy