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

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

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

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

/**
 * Zulip API response class for getting a stream id.
 *
 * @see https://zulip.com/api/get-stream-id#response
 */
public class GetStreamIdApiResponse extends ZulipApiResponse {

    @JsonProperty
    private long streamId;

    public long getStreamId() {
        return streamId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy