Class: TencentCloud::Cwp::V20180228::DescribeReverseShellEventsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeReverseShellEventsResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeReverseShellEvents返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(list = nil, totalcount = nil, requestid = nil) ⇒ DescribeReverseShellEventsResponse
constructor
A new instance of DescribeReverseShellEventsResponse.
Constructor Details
#initialize(list = nil, totalcount = nil, requestid = nil) ⇒ DescribeReverseShellEventsResponse
Returns a new instance of DescribeReverseShellEventsResponse.
20431 20432 20433 20434 20435 |
# File 'lib/v20180228/models.rb', line 20431 def initialize(list=nil, totalcount=nil, requestid=nil) @List = list @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
20429 20430 20431 |
# File 'lib/v20180228/models.rb', line 20429 def List @List end |
#RequestId ⇒ Object
20429 20430 20431 |
# File 'lib/v20180228/models.rb', line 20429 def RequestId @RequestId end |
#TotalCount ⇒ Object
20429 20430 20431 |
# File 'lib/v20180228/models.rb', line 20429 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
20437 20438 20439 20440 20441 20442 20443 20444 20445 20446 20447 20448 |
# File 'lib/v20180228/models.rb', line 20437 def deserialize(params) unless params['List'].nil? @List = [] params['List'].each do |i| reverseshell_tmp = ReverseShell.new reverseshell_tmp.deserialize(i) @List << reverseshell_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |