mirror of
https://github.com/crazy-max/diun.git
synced 2025-01-27 01:08:50 +00:00
28 lines
861 B
Go
28 lines
861 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/crazy-max/diun/v4/pkg/utl"
|
|
)
|
|
|
|
// NotifWebhook holds webhook notification configuration details
|
|
type NotifWebhook struct {
|
|
Endpoint string `yaml:"endpoint,omitempty" json:"endpoint,omitempty" validate:"required"`
|
|
Method string `yaml:"method,omitempty" json:"method,omitempty" validate:"required"`
|
|
Headers map[string]string `yaml:"headers,omitempty" json:"headers,omitempty" validate:"omitempty"`
|
|
Timeout *time.Duration `yaml:"timeout,omitempty" json:"timeout,omitempty" validate:"required"`
|
|
}
|
|
|
|
// GetDefaults gets the default values
|
|
func (s *NotifWebhook) GetDefaults() *NotifWebhook {
|
|
n := &NotifWebhook{}
|
|
n.SetDefaults()
|
|
return n
|
|
}
|
|
|
|
// SetDefaults sets the default values
|
|
func (s *NotifWebhook) SetDefaults() {
|
|
s.Method = "GET"
|
|
s.Timeout = utl.NewDuration(10 * time.Second)
|
|
}
|