Class: TencentCloud::Cwp::V20180228::DescribeWebPageEventListResponse

Inherits:
TencentCloud::Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180228/models.rb

Overview

DescribeWebPageEventList返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#ListObject

Parameters:

  • List:

    防护事件列表信息

  • TotalCount:

    总数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



25010
25011
25012
# File 'lib/v20180228/models.rb', line 25010

def List
  @List
end

#RequestIdObject

Parameters:

  • List:

    防护事件列表信息

  • TotalCount:

    总数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



25010
25011
25012
# File 'lib/v20180228/models.rb', line 25010

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • List:

    防护事件列表信息

  • TotalCount:

    总数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



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