struct_auction_detail.go 2.1 KB

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