All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jamesnetherton.zulip.client.api.server.CustomEmoji Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy