blob: b1ef7595bed5a5249307e72bfb725bd100103829 [file] [log] [blame]
package models
import "github.com/merico-dev/lake/models/common"
type NotificationType string
const (
NotificationPipelineStatusChanged NotificationType = "PipelineStatusChanged"
)
// Notification records notifications sent by lake
type Notification struct {
common.Model
Type NotificationType
Endpoint string
Nonce string
ResponseCode int
Response string
Data string
}