Class: TencentCloud::Domain::V20180808::DescribePreReleaseListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Domain::V20180808::DescribePreReleaseListResponse
- Defined in:
- lib/v20180808/models.rb
Overview
DescribePreReleaseList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, prereleaselist = nil, requestid = nil) ⇒ DescribePreReleaseListResponse
constructor
A new instance of DescribePreReleaseListResponse.
Constructor Details
#initialize(totalcount = nil, prereleaselist = nil, requestid = nil) ⇒ DescribePreReleaseListResponse
Returns a new instance of DescribePreReleaseListResponse.
2522 2523 2524 2525 2526 |
# File 'lib/v20180808/models.rb', line 2522 def initialize(totalcount=nil, prereleaselist=nil, requestid=nil) @TotalCount = totalcount @PreReleaseList = prereleaselist @RequestId = requestid end |
Instance Attribute Details
#PreReleaseList ⇒ Object
2520 2521 2522 |
# File 'lib/v20180808/models.rb', line 2520 def PreReleaseList @PreReleaseList end |
#RequestId ⇒ Object
2520 2521 2522 |
# File 'lib/v20180808/models.rb', line 2520 def RequestId @RequestId end |
#TotalCount ⇒ Object
2520 2521 2522 |
# File 'lib/v20180808/models.rb', line 2520 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 |
# File 'lib/v20180808/models.rb', line 2528 def deserialize(params) @TotalCount = params['TotalCount'] unless params['PreReleaseList'].nil? @PreReleaseList = [] params['PreReleaseList'].each do |i| prereleaseinfo_tmp = PreReleaseInfo.new prereleaseinfo_tmp.deserialize(i) @PreReleaseList << prereleaseinfo_tmp end end @RequestId = params['RequestId'] end |