com.github.jamesnetherton.zulip.client.api.message.response.MatchesNarrowApiResponse 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.message.response;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.jamesnetherton.zulip.client.api.core.ZulipApiResponse;
import com.github.jamesnetherton.zulip.client.api.message.MessageMatch;
import java.util.HashMap;
import java.util.Map;
/**
* Zulip API response class for checking if a set of messages matches a narrow.
*
* @see https://zulip.com/api/check-narrow-matches#response
*/
public class MatchesNarrowApiResponse extends ZulipApiResponse {
@JsonProperty
private Map messages = new HashMap<>();
public Map getMessages() {
return messages;
}
}