com.github.jamesnetherton.zulip.client.api.user.response.GetUserGroupsApiResponse 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.UserGroup;
import java.util.ArrayList;
import java.util.List;
/**
* Zulip API response class for getting all user groups.
*
* @see https://zulip.com/api/get-user-groups#response
*/
public class GetUserGroupsApiResponse extends ZulipApiResponse {
@JsonProperty
private List userGroups = new ArrayList<>();
public List getUserGroups() {
return userGroups;
}
}