1// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. 2// See LICENSE.txt for license information. 3 4package model 5 6type Audit struct { 7 Id string `json:"id"` 8 CreateAt int64 `json:"create_at"` 9 UserId string `json:"user_id"` 10 Action string `json:"action"` 11 ExtraInfo string `json:"extra_info"` 12 IpAddress string `json:"ip_address"` 13 SessionId string `json:"session_id"` 14} 15