com.github.jamesnetherton.zulip.client.api.user.UserGroup 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 java.util.List;
/**
* Defines a Zulip user group.
*/
public class UserGroup {
@JsonProperty
private long id;
@JsonProperty
private String description;
@JsonProperty
private String name;
@JsonProperty
private List members;
@JsonProperty
private List directSubgroupIds;
@JsonProperty
private boolean isSystemGroup;
@JsonProperty
private long canMentionGroup;
public long getId() {
return id;
}
public String getDescription() {
return description;
}
public String getName() {
return name;
}
public List getMembers() {
return members;
}
public List getDirectSubgroupIds() {
return directSubgroupIds;
}
public boolean isSystemGroup() {
return isSystemGroup;
}
public long getCanMentionGroup() {
return canMentionGroup;
}
}