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

com.github.jamesnetherton.zulip.client.api.event.response.RegisterEventQueueApiResponse Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.jamesnetherton.zulip.client.api.core.ZulipApiResponse;

/**
 * Zulip API response class for registering an event queue.
 *
 * @see https://zulip.com/api/register-queue#response
 */
public class RegisterEventQueueApiResponse extends ZulipApiResponse {

    @JsonProperty
    private String queueId;

    @JsonProperty
    private long lastEventId;

    public String getQueueId() {
        return queueId;
    }

    public long getLastEventId() {
        return lastEventId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy