Files
catalyst/app/reaction/action/webhook/response.go
2025-09-02 21:58:08 +02:00

13 lines
258 B
Go

package webhook
import (
"net/http"
)
type Response struct {
StatusCode int `json:"statusCode"`
Headers http.Header `json:"headers"`
Body string `json:"body"`
IsBase64Encoded bool `json:"isBase64Encoded"`
}