com.github.jamesnetherton.zulip.client.api.message.MessageMatch 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;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Defines message matches based on a search via a {@link com.github.jamesnetherton.zulip.client.api.narrow.Narrow}.
*/
public class MessageMatch {
@JsonProperty("match_content")
String content;
@JsonProperty("match_subject")
String subject;
public String getContent() {
return content;
}
public String getSubject() {
return subject;
}
}