Notification records notifications sent by lake
| 29 | |
| 30 | // Notification records notifications sent by lake |
| 31 | type Notification struct { |
| 32 | common.Model |
| 33 | Type NotificationType |
| 34 | Endpoint string |
| 35 | Nonce string |
| 36 | ResponseCode int |
| 37 | Response string |
| 38 | Data string |
| 39 | } |
| 40 | |
| 41 | func (Notification) TableName() string { |
| 42 | return "_devlake_notifications" |
nothing calls this directly
no outgoing calls
no test coverage detected