
org.zendesk.client.v2.model.targets.Target 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.targets;
import java.util.Date;
/**
* https://developer.zendesk.com/rest_api/docs/core/targets
*
* @author adavidson
*/
public class Target {
private Long id;
private String title;
private String type;
private boolean active;
private Date createdAt;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public boolean isActive() {
return active;
}
public void setActive(boolean active) {
this.active = active;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
@Override
public String toString() {
return "Target"
+ "{id="
+ id
+ ", title="
+ title
+ ", type="
+ type
+ ", active="
+ active
+ ", createdAt="
+ createdAt
+ '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy