summaryrefslogtreecommitdiffstats
path: root/model/data_retention_policy.go
blob: dbb13374d6f223e152fd46ed00d6cc406ab95a98 (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
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package model

import (
	"encoding/json"
	"io"
)

type DataRetentionPolicy struct {
	MessageDeletionEnabled bool  `json:"message_deletion_enabled"`
	FileDeletionEnabled    bool  `json:"file_deletion_enabled"`
	MessageRetentionCutoff int64 `json:"message_retention_cutoff"`
	FileRetentionCutoff    int64 `json:"file_retention_cutoff"`
}

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

func DataRetentionPolicyFromJson(data io.Reader) *DataRetentionPolicy {
	var me *DataRetentionPolicy
	json.NewDecoder(data).Decode(&me)
	return me
}