com.github.jamesnetherton.zulip.client.api.stream.response.GetStreamApiResponse 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.stream.response;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.jamesnetherton.zulip.client.api.core.ZulipApiResponse;
import com.github.jamesnetherton.zulip.client.api.stream.Stream;
/**
* Zulip API response class for getting a stream by id.
*
* @see https://zulip.com/api/get-stream-by-id#response
*/
public class GetStreamApiResponse extends ZulipApiResponse {
@JsonProperty
private Stream stream;
public Stream getStream() {
return stream;
}
}