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.
20027 20028 20029 20030 20031 |
# File 'lib/v20180228/models.rb', line 20027 def initialize(list=nil, totalcount=nil, requestid=nil) @List = list @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
20025 20026 20027 |
# File 'lib/v20180228/models.rb', line 20025 def List @List end |
#RequestId ⇒ Object
20025 20026 20027 |
# File 'lib/v20180228/models.rb', line 20025 def RequestId @RequestId end |
#TotalCount ⇒ Object
20025 20026 20027 |
# File 'lib/v20180228/models.rb', line 20025 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 |
# File 'lib/v20180228/models.rb', line 20033 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 |