mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
45 lines
1.0 KiB
Go
45 lines
1.0 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io"
|
|
)
|
|
|
|
type TeamSearch struct {
|
|
Term string `json:"term"`
|
|
Page *int `json:"page,omitempty"`
|
|
PerPage *int `json:"per_page,omitempty"`
|
|
AllowOpenInvite *bool `json:"allow_open_invite,omitempty"`
|
|
GroupConstrained *bool `json:"group_constrained,omitempty"`
|
|
IncludeGroupConstrained *bool `json:"include_group_constrained,omitempty"`
|
|
}
|
|
|
|
func (t *TeamSearch) IsPaginated() bool {
|
|
return t.Page != nil && t.PerPage != nil
|
|
}
|
|
|
|
// ToJson convert a TeamSearch to json string
|
|
func (t *TeamSearch) ToJson() string {
|
|
b, err := json.Marshal(t)
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
|
|
return string(b)
|
|
}
|
|
|
|
// TeamSearchFromJson decodes the input and returns a TeamSearch
|
|
func TeamSearchFromJson(data io.Reader) *TeamSearch {
|
|
decoder := json.NewDecoder(data)
|
|
var cs TeamSearch
|
|
err := decoder.Decode(&cs)
|
|
if err == nil {
|
|
return &cs
|
|
}
|
|
|
|
return nil
|
|
}
|