org.zendesk.client.v2.model.Conditions 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.ArrayList;
import java.util.List;
/**
* @author Sandeep Kaul([email protected])
*/
public class Conditions implements Serializable {
private static final long serialVersionUID = 1L;
private List all = new ArrayList<>();
private List any = new ArrayList<>();
public List getAll() {
return all;
}
public void setAll(List all) {
this.all = all;
}
public List getAny() {
return any;
}
public void setAny(List any) {
this.any = any;
}
@Override
public String toString() {
return "Conditions" + "{all=" + all + ", any=" + any + '}';
}
}