org.zendesk.client.v2.model.events.UnknownEvent 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;
public class UnknownEvent extends Event {
private static final long serialVersionUID = 1L;
private String type;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
@Override
public String toString() {
return "UnknownEvent" + "{id=" + getId() + ", type=\"" + getType() + "\"" + '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy