diff --git a/model/common_request.go b/model/common_request.go index 7cbe1ea..f92374f 100644 --- a/model/common_request.go +++ b/model/common_request.go @@ -55,3 +55,8 @@ type UpdatePayload struct { Payload interface{} `json:"payload"` Opts []*options.UpdateOptions `json:"opts"` } + +type WebhookPayloadV2 struct { + Path string `json:"path"` // request URL path from external + Data string `json:"data"` // request body +}