5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 20:42:31 +00:00
matterbridge/vendor/github.com/mattermost/mattermost-server/v5/model/user_autocomplete.go

62 lines
1.3 KiB
Go
Raw Normal View History

2020-08-09 22:29:54 +00:00
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
2016-11-12 21:00:53 +00:00
package model
import (
"encoding/json"
"io"
)
type UserAutocompleteInChannel struct {
InChannel []*User `json:"in_channel"`
OutOfChannel []*User `json:"out_of_channel"`
}
type UserAutocompleteInTeam struct {
InTeam []*User `json:"in_team"`
}
2017-08-16 21:37:37 +00:00
type UserAutocomplete struct {
Users []*User `json:"users"`
OutOfChannel []*User `json:"out_of_channel,omitempty"`
}
func (o *UserAutocomplete) ToJson() string {
b, _ := json.Marshal(o)
return string(b)
2017-08-16 21:37:37 +00:00
}
func UserAutocompleteFromJson(data io.Reader) *UserAutocomplete {
decoder := json.NewDecoder(data)
autocomplete := new(UserAutocomplete)
err := decoder.Decode(&autocomplete)
if err == nil {
return autocomplete
} else {
return nil
}
}
2016-11-12 21:00:53 +00:00
func (o *UserAutocompleteInChannel) ToJson() string {
b, _ := json.Marshal(o)
return string(b)
2016-11-12 21:00:53 +00:00
}
func UserAutocompleteInChannelFromJson(data io.Reader) *UserAutocompleteInChannel {
var o *UserAutocompleteInChannel
json.NewDecoder(data).Decode(&o)
return o
2016-11-12 21:00:53 +00:00
}
func (o *UserAutocompleteInTeam) ToJson() string {
b, _ := json.Marshal(o)
return string(b)
2016-11-12 21:00:53 +00:00
}
func UserAutocompleteInTeamFromJson(data io.Reader) *UserAutocompleteInTeam {
var o *UserAutocompleteInTeam
json.NewDecoder(data).Decode(&o)
return o
2016-11-12 21:00:53 +00:00
}