2024-10-26 23:57:47 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type NotificationForm struct {
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
URL string `json:"url,omitempty"`
|
|
|
|
RequestMethod int `json:"request_method,omitempty"`
|
|
|
|
RequestType int `json:"request_type,omitempty"`
|
|
|
|
RequestHeader string `json:"request_header,omitempty"`
|
|
|
|
RequestBody string `json:"request_body,omitempty"`
|
2024-11-01 14:07:05 +08:00
|
|
|
VerifyTLS bool `json:"verify_tls,omitempty"`
|
2024-10-26 23:57:47 +08:00
|
|
|
SkipCheck bool `json:"skip_check,omitempty"`
|
|
|
|
}
|