Class: TencentCloud::Yunjing::V20180228::DescribeReverseShellEventsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Yunjing::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.
3322 3323 3324 3325 3326 |
# File 'lib/v20180228/models.rb', line 3322 def initialize(list=nil, totalcount=nil, requestid=nil) @List = list @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
3320 3321 3322 |
# File 'lib/v20180228/models.rb', line 3320 def List @List end |
#RequestId ⇒ Object
3320 3321 3322 |
# File 'lib/v20180228/models.rb', line 3320 def RequestId @RequestId end |
#TotalCount ⇒ Object
3320 3321 3322 |
# File 'lib/v20180228/models.rb', line 3320 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 |
# File 'lib/v20180228/models.rb', line 3328 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 |