mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
10 lines
182 B
Go
10 lines
182 B
Go
package billing_paddle
|
|
|
|
import "encoding/json"
|
|
|
|
type PaddleWebhookDTO struct {
|
|
EventID string `json:"event_id"`
|
|
EventType string `json:"event_type"`
|
|
Data json.RawMessage
|
|
}
|