Files
mattermost/model/security_bulletin.go

42 lines
839 B
Go
Raw Normal View History

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
2015-10-05 17:33:45 -07:00
// See License.txt for license information.
package model
import (
"encoding/json"
"io"
)
type SecurityBulletin struct {
Id string `json:"id"`
AppliesToVersion string `json:"applies_to_version"`
}
type SecurityBulletins []SecurityBulletin
func (me *SecurityBulletin) ToJson() string {
2018-01-30 17:23:00 -06:00
b, _ := json.Marshal(me)
return string(b)
2015-10-05 17:33:45 -07:00
}
func SecurityBulletinFromJson(data io.Reader) *SecurityBulletin {
2018-01-30 17:23:00 -06:00
var o *SecurityBulletin
json.NewDecoder(data).Decode(&o)
return o
2015-10-05 17:33:45 -07:00
}
func (me SecurityBulletins) ToJson() string {
if b, err := json.Marshal(me); err != nil {
return "[]"
} else {
return string(b)
}
}
func SecurityBulletinsFromJson(data io.Reader) SecurityBulletins {
var o SecurityBulletins
2018-01-30 17:23:00 -06:00
json.NewDecoder(data).Decode(&o)
return o
2015-10-05 17:33:45 -07:00
}