This commit is contained in:
Philipp Heckel 2022-04-17 14:29:43 -04:00
parent 967cde1fb5
commit 55869f551e
2 changed files with 10 additions and 3 deletions

View file

@ -44,9 +44,13 @@ type attachment struct {
}
type action struct {
Action string `json:"action"`
Label string `json:"label"`
URL string `json:"url,omitempty"`
ID string `json:"id"`
Action string `json:"action"`
Label string `json:"label"`
URL string `json:"url,omitempty"` // used in "view" and "http"
Method string `json:"method,omitempty"` // used in "http"
Headers map[string]string `json:"headers,omitempty"` // used in "http"
Body string `json:"body,omitempty"` // used in "http"
}
// publishMessage is used as input when publishing as JSON