Class: TencentCloud::Tse::V20201207::DescribeConfigFileReleasesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tse::V20201207::DescribeConfigFileReleasesResponse
- Defined in:
- lib/v20201207/models.rb
Overview
DescribeConfigFileReleases返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, releases = nil, requestid = nil) ⇒ DescribeConfigFileReleasesResponse
constructor
A new instance of DescribeConfigFileReleasesResponse.
Constructor Details
#initialize(totalcount = nil, releases = nil, requestid = nil) ⇒ DescribeConfigFileReleasesResponse
Returns a new instance of DescribeConfigFileReleasesResponse.
5650 5651 5652 5653 5654 |
# File 'lib/v20201207/models.rb', line 5650 def initialize(totalcount=nil, releases=nil, requestid=nil) @TotalCount = totalcount @Releases = releases @RequestId = requestid end |
Instance Attribute Details
#Releases ⇒ Object
5648 5649 5650 |
# File 'lib/v20201207/models.rb', line 5648 def Releases @Releases end |
#RequestId ⇒ Object
5648 5649 5650 |
# File 'lib/v20201207/models.rb', line 5648 def RequestId @RequestId end |
#TotalCount ⇒ Object
5648 5649 5650 |
# File 'lib/v20201207/models.rb', line 5648 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 |
# File 'lib/v20201207/models.rb', line 5656 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Releases'].nil? @Releases = [] params['Releases'].each do |i| configfilerelease_tmp = ConfigFileRelease.new configfilerelease_tmp.deserialize(i) @Releases << configfilerelease_tmp end end @RequestId = params['RequestId'] end |