blob: fb021ba3348368418b0fd38dfa99178f4f2919fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package warning
import "time"
type WarningResponse struct {
SystemRef string `json:"system_ref"`
Admin string `json:"admin"`
Message string `json:"message"`
Active bool `json:"active"`
CreatedAt time.Time `json:"created_at"`
}
|