Class: TencentCloud::Domain::V20180808::DescribeBiddingListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Domain::V20180808::DescribeBiddingListResponse
- Defined in:
- lib/v20180808/models.rb
Overview
DescribeBiddingList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, biddinglist = nil, requestid = nil) ⇒ DescribeBiddingListResponse
constructor
A new instance of DescribeBiddingListResponse.
Constructor Details
#initialize(total = nil, biddinglist = nil, requestid = nil) ⇒ DescribeBiddingListResponse
Returns a new instance of DescribeBiddingListResponse.
1610 1611 1612 1613 1614 |
# File 'lib/v20180808/models.rb', line 1610 def initialize(total=nil, biddinglist=nil, requestid=nil) @Total = total @BiddingList = biddinglist @RequestId = requestid end |
Instance Attribute Details
#BiddingList ⇒ Object
1608 1609 1610 |
# File 'lib/v20180808/models.rb', line 1608 def BiddingList @BiddingList end |
#RequestId ⇒ Object
1608 1609 1610 |
# File 'lib/v20180808/models.rb', line 1608 def RequestId @RequestId end |
#Total ⇒ Object
1608 1609 1610 |
# File 'lib/v20180808/models.rb', line 1608 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 |
# File 'lib/v20180808/models.rb', line 1616 def deserialize(params) @Total = params['Total'] unless params['BiddingList'].nil? @BiddingList = [] params['BiddingList'].each do |i| biddingresult_tmp = BiddingResult.new biddingresult_tmp.deserialize(i) @BiddingList << biddingresult_tmp end end @RequestId = params['RequestId'] end |