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