2017-08-16 23:37:37 +02:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
2020-08-10 00:29:54 +02:00
|
|
|
// See LICENSE.txt for license information.
|
2016-04-10 23:39:38 +02:00
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
type SuggestCommand struct {
|
|
|
|
Suggestion string `json:"suggestion"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *SuggestCommand) ToJson() string {
|
2018-11-18 18:55:05 +01:00
|
|
|
b, _ := json.Marshal(o)
|
|
|
|
return string(b)
|
2016-04-10 23:39:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func SuggestCommandFromJson(data io.Reader) *SuggestCommand {
|
2018-11-18 18:55:05 +01:00
|
|
|
var o *SuggestCommand
|
|
|
|
json.NewDecoder(data).Decode(&o)
|
|
|
|
return o
|
2016-04-10 23:39:38 +02:00
|
|
|
}
|