-
Notifications
You must be signed in to change notification settings - Fork 271
/
struct_auction_detail.go
45 lines (43 loc) · 2.31 KB
/
struct_auction_detail.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package domain
//Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//You may obtain a copy of the License at
//
//http://www.apache.org/licenses/LICENSE-2.0
//
//Unless required by applicable law or agreed to in writing, software
//distributed under the License is distributed on an "AS IS" BASIS,
//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//See the License for the specific language governing permissions and
//limitations under the License.
//
// Code generated by Alibaba Cloud SDK Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
// AuctionDetail is a nested struct in domain response
type AuctionDetail struct {
Status string `json:"Status" xml:"Status"`
ReserveMet bool `json:"ReserveMet" xml:"ReserveMet"`
HighBid float64 `json:"HighBid" xml:"HighBid"`
DeliveryTime int64 `json:"DeliveryTime" xml:"DeliveryTime"`
TransferInPrice float64 `json:"TransferInPrice" xml:"TransferInPrice"`
NextValidBid float64 `json:"NextValidBid" xml:"NextValidBid"`
ProduceStatus string `json:"ProduceStatus" xml:"ProduceStatus"`
HighBidder string `json:"HighBidder" xml:"HighBidder"`
BookedPartner string `json:"BookedPartner" xml:"BookedPartner"`
Currency string `json:"Currency" xml:"Currency"`
DomainName string `json:"DomainName" xml:"DomainName"`
YourCurrentBid float64 `json:"YourCurrentBid" xml:"YourCurrentBid"`
FailCode string `json:"FailCode" xml:"FailCode"`
AuctionEndTime int64 `json:"AuctionEndTime" xml:"AuctionEndTime"`
BookEndTime int64 `json:"BookEndTime" xml:"BookEndTime"`
PayEndTime int64 `json:"PayEndTime" xml:"PayEndTime"`
PayStatus string `json:"PayStatus" xml:"PayStatus"`
YourMaxBid float64 `json:"YourMaxBid" xml:"YourMaxBid"`
PayPrice float64 `json:"PayPrice" xml:"PayPrice"`
AuctionId string `json:"AuctionId" xml:"AuctionId"`
PartnerType string `json:"PartnerType" xml:"PartnerType"`
DomainType string `json:"DomainType" xml:"DomainType"`
ReserveMin int64 `json:"ReserveMin" xml:"ReserveMin"`
ReserveMax int64 `json:"ReserveMax" xml:"ReserveMax"`
ReservePrice int64 `json:"ReservePrice" xml:"ReservePrice"`
}