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.
5671 5672 5673 5674 5675 |
# File 'lib/v20201207/models.rb', line 5671 def initialize(totalcount=nil, releases=nil, requestid=nil) @TotalCount = totalcount @Releases = releases @RequestId = requestid end |
Instance Attribute Details
#Releases ⇒ Object
5669 5670 5671 |
# File 'lib/v20201207/models.rb', line 5669 def Releases @Releases end |
#RequestId ⇒ Object
5669 5670 5671 |
# File 'lib/v20201207/models.rb', line 5669 def RequestId @RequestId end |
#TotalCount ⇒ Object
5669 5670 5671 |
# File 'lib/v20201207/models.rb', line 5669 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 |
# File 'lib/v20201207/models.rb', line 5677 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 |