Class: TencentCloud::Cwp::V20180228::DescribeWebPageEventListResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeWebPageEventListResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeWebPageEventList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(list = nil, totalcount = nil, requestid = nil) ⇒ DescribeWebPageEventListResponse
constructor
A new instance of DescribeWebPageEventListResponse.
Constructor Details
#initialize(list = nil, totalcount = nil, requestid = nil) ⇒ DescribeWebPageEventListResponse
Returns a new instance of DescribeWebPageEventListResponse.
25012 25013 25014 25015 25016 |
# File 'lib/v20180228/models.rb', line 25012 def initialize(list=nil, totalcount=nil, requestid=nil) @List = list @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
25010 25011 25012 |
# File 'lib/v20180228/models.rb', line 25010 def List @List end |
#RequestId ⇒ Object
25010 25011 25012 |
# File 'lib/v20180228/models.rb', line 25010 def RequestId @RequestId end |
#TotalCount ⇒ Object
25010 25011 25012 |
# File 'lib/v20180228/models.rb', line 25010 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 |
# File 'lib/v20180228/models.rb', line 25018 def deserialize(params) unless params['List'].nil? @List = [] params['List'].each do |i| protecteventlists_tmp = ProtectEventLists.new protecteventlists_tmp.deserialize(i) @List << protecteventlists_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |