org.zendesk.client.v2.model.Via 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;
import java.io.Serializable;
import java.util.Map;
/**
* @author stephenc
* @since 04/04/2013 17:00
*/
public class Via implements Serializable {
private static final long serialVersionUID = 1L;
private String channel;
private Map source;
public String getChannel() {
return channel;
}
public void setChannel(String channel) {
this.channel = channel;
}
public Map getSource() {
return source;
}
public void setSource(Map source) {
this.source = source;
}
@Override
public String toString() {
return "Via" + "{channel='" + channel + '\'' + ", source=" + source + '}';
}
}