org.zendesk.client.v2.model.TicketRestriction 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;
public enum TicketRestriction {
ORGANIZATION("organization"),
GROUPS("groups"),
ASSIGNED("assigned"),
REQUESTED("requested");
private final String name;
TicketRestriction(String name) {
this.name = name;
}
@Override
public String toString() {
return name().toLowerCase();
}
}