go-again/webhooks/webhooks.go

14 lines
477 B
Go
Raw Normal View History

2019-06-22 23:11:14 +00:00
package webooks
type Webhook struct {
2019-06-23 06:08:05 +00:00
ID string `json:"id,omitempty"`
Comment string `json:"comment"`
2019-06-22 23:11:14 +00:00
Method string `json:"method"`
URL string `json:"url"`
2019-06-23 06:08:05 +00:00
Auth map[string]string `json:"auth,omitempty"`
Headers map[string]string `json:"headers,omitempty"`
Form map[string]string `json:"form,omitempty"`
JSON map[string]string `json:"json,omitempty"`
Config map[string]string `json:"config,omitempty"`
2019-06-22 23:11:14 +00:00
}