com.github.jamesnetherton.zulip.client.api.server.CustomEmoji Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zulip-java-client Show documentation
Show all versions of zulip-java-client Show documentation
Java client for the Zulip REST API
The newest version!
package com.github.jamesnetherton.zulip.client.api.server;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Defines a Zulip custom emoji.
*/
public class CustomEmoji {
@JsonProperty
private long id;
@JsonProperty
private String name;
@JsonProperty
private String sourceUrl;
@JsonProperty
private String stillUrl;
@JsonProperty
private boolean deactivated;
@JsonProperty
private long authorId;
public long getId() {
return id;
}
public String getName() {
return name;
}
public String getSourceUrl() {
return sourceUrl;
}
public String getStillUrl() {
return stillUrl;
}
public boolean isDeactivated() {
return deactivated;
}
public long getAuthorId() {
return authorId;
}
}