Class: TencentCloud::Cwp::V20180228::DescribeJavaMemShellListResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeJavaMemShellListResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeJavaMemShellList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(list = nil, totalcount = nil, requestid = nil) ⇒ DescribeJavaMemShellListResponse
constructor
A new instance of DescribeJavaMemShellListResponse.
Constructor Details
#initialize(list = nil, totalcount = nil, requestid = nil) ⇒ DescribeJavaMemShellListResponse
Returns a new instance of DescribeJavaMemShellListResponse.
15493 15494 15495 15496 15497 |
# File 'lib/v20180228/models.rb', line 15493 def initialize(list=nil, totalcount=nil, requestid=nil) @List = list @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
15491 15492 15493 |
# File 'lib/v20180228/models.rb', line 15491 def List @List end |
#RequestId ⇒ Object
15491 15492 15493 |
# File 'lib/v20180228/models.rb', line 15491 def RequestId @RequestId end |
#TotalCount ⇒ Object
15491 15492 15493 |
# File 'lib/v20180228/models.rb', line 15491 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 |
# File 'lib/v20180228/models.rb', line 15499 def deserialize(params) unless params['List'].nil? @List = [] params['List'].each do |i| javamemshellinfo_tmp = JavaMemShellInfo.new javamemshellinfo_tmp.deserialize(i) @List << javamemshellinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |