com.zipwhip.api.signals.SignalEvent 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.signals;
import java.util.List;
/**
* Created by IntelliJ IDEA. User: Michael Date: 8/1/11 Time: 3:07 PM
*/
public class SignalEvent {
/**
* The set of signals that occurred.
*/
List signals;
public SignalEvent(List signals) {
this.signals = signals;
}
public List getSignals() {
return signals;
}
public void setSignals(List signals) {
this.signals = signals;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy