Class: TencentCloud::Cwp::V20180228::DescribeJavaMemShellPluginInfoResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeJavaMemShellPluginInfoResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeJavaMemShellPluginInfo返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(list = nil, totalcount = nil, requestid = nil) ⇒ DescribeJavaMemShellPluginInfoResponse
constructor
A new instance of DescribeJavaMemShellPluginInfoResponse.
Constructor Details
#initialize(list = nil, totalcount = nil, requestid = nil) ⇒ DescribeJavaMemShellPluginInfoResponse
Returns a new instance of DescribeJavaMemShellPluginInfoResponse.
15559 15560 15561 15562 15563 |
# File 'lib/v20180228/models.rb', line 15559 def initialize(list=nil, totalcount=nil, requestid=nil) @List = list @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
15557 15558 15559 |
# File 'lib/v20180228/models.rb', line 15557 def List @List end |
#RequestId ⇒ Object
15557 15558 15559 |
# File 'lib/v20180228/models.rb', line 15557 def RequestId @RequestId end |
#TotalCount ⇒ Object
15557 15558 15559 |
# File 'lib/v20180228/models.rb', line 15557 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 |
# File 'lib/v20180228/models.rb', line 15565 def deserialize(params) unless params['List'].nil? @List = [] params['List'].each do |i| javamemshellplugininfo_tmp = JavaMemShellPluginInfo.new javamemshellplugininfo_tmp.deserialize(i) @List << javamemshellplugininfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |