Class: TencentCloud::Cwp::V20180228::DescribeScreenAttackHotspotResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeScreenAttackHotspotResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeScreenAttackHotspot返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(list = nil, requestid = nil) ⇒ DescribeScreenAttackHotspotResponse
constructor
A new instance of DescribeScreenAttackHotspotResponse.
Constructor Details
#initialize(list = nil, requestid = nil) ⇒ DescribeScreenAttackHotspotResponse
Returns a new instance of DescribeScreenAttackHotspotResponse.
20993 20994 20995 20996 |
# File 'lib/v20180228/models.rb', line 20993 def initialize(list=nil, requestid=nil) @List = list @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
20991 20992 20993 |
# File 'lib/v20180228/models.rb', line 20991 def List @List end |
#RequestId ⇒ Object
20991 20992 20993 |
# File 'lib/v20180228/models.rb', line 20991 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 |
# File 'lib/v20180228/models.rb', line 20998 def deserialize(params) unless params['List'].nil? @List = [] params['List'].each do |i| screenattackhotspot_tmp = ScreenAttackHotspot.new screenattackhotspot_tmp.deserialize(i) @List << screenattackhotspot_tmp end end @RequestId = params['RequestId'] end |