| 68 | } |
| 69 | |
| 70 | type Webhook struct { |
| 71 | URL *string `json:"url,omitempty"` |
| 72 | ID *int64 `json:"id,omitempty"` |
| 73 | Type *string `json:"type,omitempty"` |
| 74 | Name *string `json:"name,omitempty"` |
| 75 | TestURL *string `json:"test_url,omitempty"` |
| 76 | PingURL *string `json:"ping_url,omitempty"` |
| 77 | Config map[string]interface{} `json:"config,omitempty"` |
| 78 | Active *bool `json:"active,omitempty"` |
| 79 | } |
| 80 | |
| 81 | type Workflow struct { |
| 82 | ID *int64 `json:"id,omitempty"` |
nothing calls this directly
no outgoing calls
no test coverage detected