org.zendesk.client.v2.model.events.PushEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zendesk-java-client Show documentation
Show all versions of zendesk-java-client Show documentation
Java client for the Zendesk API
The newest version!
package org.zendesk.client.v2.model.events;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* @author stephenc
* @since 05/04/2013 11:57
*/
public class PushEvent extends Event {
private static final long serialVersionUID = 1L;
private String value;
private String valueReference;
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
@JsonProperty("value_reference")
public String getValueReference() {
return valueReference;
}
public void setValueReference(String valueReference) {
this.valueReference = valueReference;
}
@Override
public String toString() {
return "PushEvent"
+ "{value='"
+ value
+ '\''
+ ", valueReference='"
+ valueReference
+ '\''
+ '}';
}
}