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.
24627 24628 24629 24630 24631 |
# File 'lib/v20180228/models.rb', line 24627 def initialize(list=nil, totalcount=nil, requestid=nil) @List = list @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
24625 24626 24627 |
# File 'lib/v20180228/models.rb', line 24625 def List @List end |
#RequestId ⇒ Object
24625 24626 24627 |
# File 'lib/v20180228/models.rb', line 24625 def RequestId @RequestId end |
#TotalCount ⇒ Object
24625 24626 24627 |
# File 'lib/v20180228/models.rb', line 24625 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
24633 24634 24635 24636 24637 24638 24639 24640 24641 24642 24643 24644 |
# File 'lib/v20180228/models.rb', line 24633 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 |