This commit is contained in:
scheibling
2025-04-08 19:24:11 +02:00
commit 30fb57f4f7
92 changed files with 6196 additions and 0 deletions

18
entity/webhook.go Normal file
View File

@@ -0,0 +1,18 @@
package entity
// Webhook webhook properties
type Webhook struct {
ID int `json:"id"`
Name string `json:"name"`
Status string `json:"status"`
Topic string `json:"topic"`
Resource string `json:"resource"`
Event string `json:"event"`
Hooks []string `json:"hooks"`
DeliveryURL string `json:"delivery_url"`
Secret string `json:"secret"`
DateCreated string `json:"date_created"`
DateCreatedGMT string `json:"date_created_gmt"`
DateModified string `json:"date_modified"`
DateModifiedGMT string `json:"date_modified_gmt"`
}