
org.zendesk.client.v2.model.Collaborator 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
package org.zendesk.client.v2.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.io.Serializable;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Collaborator implements Serializable {
private static final long serialVersionUID = 1L;
private String name;
private String email;
public Collaborator() {}
protected Collaborator(String name) {
this.name = name;
}
public Collaborator(String name, String email) {
this.name = name;
this.email = email;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy