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.
15844 15845 15846 15847 15848 |
# File 'lib/v20180228/models.rb', line 15844 def initialize(list=nil, totalcount=nil, requestid=nil) @List = list @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
15842 15843 15844 |
# File 'lib/v20180228/models.rb', line 15842 def List @List end |
#RequestId ⇒ Object
15842 15843 15844 |
# File 'lib/v20180228/models.rb', line 15842 def RequestId @RequestId end |
#TotalCount ⇒ Object
15842 15843 15844 |
# File 'lib/v20180228/models.rb', line 15842 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 |
# File 'lib/v20180228/models.rb', line 15850 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 |