feat: configure webhook
This commit is contained in:
@@ -7,10 +7,10 @@ import (
|
||||
)
|
||||
|
||||
type Order struct {
|
||||
ID primitive.ObjectID `bson:"_id" json:"_id"`
|
||||
OrderID string `json:"order_id"`
|
||||
ClientID string `json:"client_id"`
|
||||
Email string `json:"email"`
|
||||
ID primitive.ObjectID `bson:"_id" json:"-"`
|
||||
OrderID string `bson:"order_id" json:"order_id"`
|
||||
ClientID string `bson:"client_id" json:"client_id"`
|
||||
Email string `bson:"email" json:"email"`
|
||||
Amount float64 `bson:"amount" json:"amount"`
|
||||
Tx string `bson:"tx" json:"tx"`
|
||||
Block string `bson:"block" json:"block"`
|
||||
|
||||
Reference in New Issue
Block a user