Files
diun/internal/model/webhook.go
2019-06-04 22:11:54 +02:00

11 lines
373 B
Go

package model
// Webhook holds webhook notification configuration details
type Webhook struct {
Enable bool `yaml:"enable,omitempty"`
Endpoint string `yaml:"endpoint,omitempty"`
Method string `yaml:"method,omitempty"`
Headers map[string]string `yaml:"headers,omitempty"`
Timeout int `yaml:"timeout,omitempty"`
}