org.zendesk.client.v2.model.Role 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 Role {
END_USER("end-user"),
AGENT("agent"),
ADMIN("admin");
private final String name;
Role(String name) {
this.name = name;
}
@Override
public String toString() {
return name;
}
}