com.github.jamesnetherton.zulip.client.api.invitation.response.GetAllInvitationsApiResponse 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.invitation.response;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.jamesnetherton.zulip.client.api.core.ZulipApiResponse;
import com.github.jamesnetherton.zulip.client.api.invitation.Invitation;
import java.util.ArrayList;
import java.util.List;
/**
* Zulip API response class for fetching invitations.
*
* @see https://zulip.com/api/get-invites#response
*/
public class GetAllInvitationsApiResponse extends ZulipApiResponse {
@JsonProperty
List invites = new ArrayList<>();
public List getInvites() {
return invites;
}
}