All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jamesnetherton.zulip.client.api.message.MessageMatch Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy