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

com.jrodmanu.mattermostjavasdk.models.bodies.SearchTermBody Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package com.jrodmanu.mattermostjavasdk.models.bodies;

/**
 * Object represents body sent to the Mattermost API for anything that just requires a search term
 */
public class SearchTermBody {
    public String term;

    /**
     * SearchTermBody constructor
      * @param term the term to search for something with
     */
    public SearchTermBody(String term) {
        this.term = term;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy