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

com.github.jamesnetherton.zulip.client.api.stream.Topic Maven / Gradle / Ivy

The newest version!
package com.github.jamesnetherton.zulip.client.api.stream;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Defines a Zulip stream topic.
 */
public class Topic {

    @JsonProperty
    private long maxId;

    @JsonProperty
    private String name;

    public long getMaxId() {
        return maxId;
    }

    public String getName() {
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy