summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/mattermost-server/v5/model/command_request.go
blob: 9a4e40c8f88fb649eda216d825c02e438853dbfb (plain) (blame)
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
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.

package model

import (
	"encoding/json"
	"io"
)

type CommandMoveRequest struct {
	TeamId string `json:"team_id"`
}

func CommandMoveRequestFromJson(data io.Reader) (*CommandMoveRequest, error) {
	decoder := json.NewDecoder(data)
	var cmr CommandMoveRequest
	err := decoder.Decode(&cmr)
	if err != nil {
		return nil, err
	}
	return &cmr, nil
}

func (cmr *CommandMoveRequest) ToJson() string {
	b, err := json.Marshal(cmr)
	if err != nil {
		return ""
	}
	return string(b)
}