mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 13:20:27 +00:00
26 lines
478 B
Go
26 lines
478 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io"
|
|
)
|
|
|
|
type EmojiSearch struct {
|
|
Term string `json:"term"`
|
|
PrefixOnly bool `json:"prefix_only"`
|
|
}
|
|
|
|
func (es *EmojiSearch) ToJson() string {
|
|
b, _ := json.Marshal(es)
|
|
return string(b)
|
|
}
|
|
|
|
func EmojiSearchFromJson(data io.Reader) *EmojiSearch {
|
|
var es *EmojiSearch
|
|
json.NewDecoder(data).Decode(&es)
|
|
return es
|
|
}
|