Class: TencentCloud::Domain::V20180808::DescribeAuctionListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Domain::V20180808::DescribeAuctionListResponse
- Defined in:
- lib/v20180808/models.rb
Overview
DescribeAuctionList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(auctionlist = nil, totalcount = nil, requestid = nil) ⇒ DescribeAuctionListResponse
constructor
A new instance of DescribeAuctionListResponse.
Constructor Details
#initialize(auctionlist = nil, totalcount = nil, requestid = nil) ⇒ DescribeAuctionListResponse
Returns a new instance of DescribeAuctionListResponse.
1186 1187 1188 1189 1190 |
# File 'lib/v20180808/models.rb', line 1186 def initialize(auctionlist=nil, totalcount=nil, requestid=nil) @AuctionList = auctionlist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#AuctionList ⇒ Object
1184 1185 1186 |
# File 'lib/v20180808/models.rb', line 1184 def AuctionList @AuctionList end |
#RequestId ⇒ Object
1184 1185 1186 |
# File 'lib/v20180808/models.rb', line 1184 def RequestId @RequestId end |
#TotalCount ⇒ Object
1184 1185 1186 |
# File 'lib/v20180808/models.rb', line 1184 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 |
# File 'lib/v20180808/models.rb', line 1192 def deserialize(params) unless params['AuctionList'].nil? @AuctionList = [] params['AuctionList'].each do |i| auctioninfo_tmp = AuctionInfo.new auctioninfo_tmp.deserialize(i) @AuctionList << auctioninfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |