com.zipwhip.api.response.StringServerResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zipwhip-api Show documentation
Show all versions of zipwhip-api Show documentation
Java client to support applications powered by the Zipwhip Cloud
The newest version!
package com.zipwhip.api.response;
import com.zipwhip.api.signals.Signal;
import java.util.List;
import java.util.Map;
/**
* Created by IntelliJ IDEA.
* * Date: Jul 18, 2009
* Time: 10:23:38 AM
*/
public class StringServerResponse extends ServerResponse {
public String response;
public StringServerResponse(String raw, boolean success, String response, Map>> sessions) {
super(raw, success, sessions);
this.response = response;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy