summaryrefslogtreecommitdiffstats
path: root/model/user_autocomplete.go
blob: b5edb45be5f2959a379ef114b284afecefe60ed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

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"`
}

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

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

func (o *UserAutocompleteInChannel) ToJson() string {
	b, _ := json.Marshal(o)
	return string(b)
}

func UserAutocompleteInChannelFromJson(data io.Reader) *UserAutocompleteInChannel {
	var o *UserAutocompleteInChannel
	json.NewDecoder(data).Decode(&o)
	return o
}

func (o *UserAutocompleteInTeam) ToJson() string {
	b, _ := json.Marshal(o)
	return string(b)
}

func UserAutocompleteInTeamFromJson(data io.Reader) *UserAutocompleteInTeam {
	var o *UserAutocompleteInTeam
	json.NewDecoder(data).Decode(&o)
	return o
}