org.zendesk.client.v2.model.events.CcEvent 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 java.util.List;
import org.zendesk.client.v2.model.Via;
/**
* @author stephenc
* @since 05/04/2013 11:56
*/
public class CcEvent extends Event {
private static final long serialVersionUID = 1L;
private List recipients;
private Via via;
public List getRecipients() {
return recipients;
}
public void setRecipients(List recipients) {
this.recipients = recipients;
}
public Via getVia() {
return via;
}
public void setVia(Via via) {
this.via = via;
}
@Override
public String toString() {
return "CcEvent" + "{recipients=" + recipients + ", via=" + via + '}';
}
}