Class: TencentCloud::Tke::V20180525::GetTkeAppChartListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::GetTkeAppChartListResponse
- Defined in:
- lib/v20180525/models.rb
Overview
GetTkeAppChartList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(appcharts = nil, requestid = nil) ⇒ GetTkeAppChartListResponse
constructor
A new instance of GetTkeAppChartListResponse.
Constructor Details
#initialize(appcharts = nil, requestid = nil) ⇒ GetTkeAppChartListResponse
Returns a new instance of GetTkeAppChartListResponse.
13113 13114 13115 13116 |
# File 'lib/v20180525/models.rb', line 13113 def initialize(appcharts=nil, requestid=nil) @AppCharts = appcharts @RequestId = requestid end |
Instance Attribute Details
#AppCharts ⇒ Object
13111 13112 13113 |
# File 'lib/v20180525/models.rb', line 13111 def AppCharts @AppCharts end |
#RequestId ⇒ Object
13111 13112 13113 |
# File 'lib/v20180525/models.rb', line 13111 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 |
# File 'lib/v20180525/models.rb', line 13118 def deserialize(params) unless params['AppCharts'].nil? @AppCharts = [] params['AppCharts'].each do |i| appchart_tmp = AppChart.new appchart_tmp.deserialize(i) @AppCharts << appchart_tmp end end @RequestId = params['RequestId'] end |