com.github.jamesnetherton.zulip.client.api.user.UserStatus 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;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.jamesnetherton.zulip.client.api.message.ReactionType;
public class UserStatus {
@JsonProperty
private boolean away;
@JsonProperty
private String statusText;
@JsonProperty
private String emojiName;
@JsonProperty
private String emojiCode;
@JsonProperty
ReactionType reactionType;
public boolean isAway() {
return away;
}
public String getStatusText() {
return statusText;
}
public String getEmojiName() {
return emojiName;
}
public String getEmojiCode() {
return emojiCode;
}
public ReactionType getReactionType() {
return reactionType;
}
}