add product & order data to message struct
This commit is contained in:
parent
70ddbb4650
commit
65a3347f16
41
v1/types.go
41
v1/types.go
@ -6,9 +6,13 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
// ChannelFeatureNone channel can not implement feature
|
||||
ChannelFeatureNone string = "none"
|
||||
// ChannelFeatureReceive channel implement feature on receive
|
||||
ChannelFeatureReceive string = "receive"
|
||||
// ChannelFeatureSend channel implement feature on send
|
||||
ChannelFeatureSend string = "send"
|
||||
// ChannelFeatureBoth channel implement feature on both directions
|
||||
ChannelFeatureBoth string = "both"
|
||||
)
|
||||
|
||||
@ -149,19 +153,56 @@ type WebhookData struct {
|
||||
QuoteContent string `json:"quote_content,omitempty"`
|
||||
User *MessageDataUser `json:"user,omitempty"`
|
||||
Bot *MessageDataBot `json:"bot,omitempty"`
|
||||
Product *MessageDataProduct `json:"product,omitempty"`
|
||||
Order *MessageDataOrder `json:"order,omitempty"`
|
||||
}
|
||||
|
||||
// MessageDataUser user data from webhook
|
||||
type MessageDataUser struct {
|
||||
FirstName string `json:"first_name"`
|
||||
LastName string `json:"last_name"`
|
||||
Avatar string `json:"avatar"`
|
||||
}
|
||||
|
||||
// MessageDataBot bot data from webhook
|
||||
type MessageDataBot struct {
|
||||
Name string `json:"name"`
|
||||
Avatar string `json:"avatar"`
|
||||
}
|
||||
|
||||
// MessageDataProduct product data from webhook
|
||||
type MessageDataProduct struct {
|
||||
ID uint64 `json:"id"`
|
||||
Name string `json:"name"`
|
||||
Article string `json:"article,omitempty"`
|
||||
Url string `json:"url,omitempty"`
|
||||
Img string `json:"img,omitempty"`
|
||||
Cost string `json:"cost,omitempty"`
|
||||
Quantity string `json:"quantity,omitempty"`
|
||||
}
|
||||
|
||||
// MessageDataOrder order data from webhook
|
||||
type MessageDataOrder struct {
|
||||
Number string `json:"number"`
|
||||
Url string `json:"url,omitempty"`
|
||||
Date string `json:"date,omitempty"`
|
||||
Cost string `json:"cost,omitempty"`
|
||||
Status *MessageDataOrderStatus `json:"status,omitempty"`
|
||||
Items []MessageDataOrderItem `json:"items,omitempty"`
|
||||
}
|
||||
|
||||
type MessageDataOrderStatus struct {
|
||||
Code string `json:"code,omitempty"`
|
||||
Name string `json:"name,omitempty"`
|
||||
}
|
||||
|
||||
type MessageDataOrderItem struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Url string `json:"url,omitempty"`
|
||||
Quantity string `json:"quantity,omitempty"`
|
||||
Price string `json:"price,omitempty"`
|
||||
}
|
||||
|
||||
// TransportRequestMeta request metadata
|
||||
type TransportRequestMeta struct {
|
||||
ID uint64 `json:"id"`
|
||||
|
Loading…
Reference in New Issue
Block a user