You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
654 B
21 lines
654 B
3 years ago
|
package message
|
||
|
|
||
|
type Lot struct {
|
||
|
LotID string `json:"lotId"`
|
||
|
ItemName string `json:"itemName"`
|
||
|
SellerTag string `json:"sellerTag"`
|
||
|
SellerName string `json:"sellerName"`
|
||
|
Quality string `json:"quality"`
|
||
|
SellerCastle string `json:"sellerCastle"`
|
||
|
Condition string `json:"condition"`
|
||
|
EndAt string `json:"endAt"`
|
||
|
StartAt string `json:"startedAt"`
|
||
|
BuyerCastle string `json:"buyerCastle"`
|
||
|
Status string `json:"status"`
|
||
|
FinishedAt string `json:"finishedAt"`
|
||
|
BuyerTag string `json:"buyerTag"`
|
||
|
BuyerName string `json:"buyerName"`
|
||
|
Price int `json:"price"`
|
||
|
Stats map[string]int
|
||
|
}
|