Class: TencentCloud::Cwp::V20180228::ExportWebPageEventListRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::ExportWebPageEventListRequest
- Defined in:
- lib/v20180228/models.rb
Overview
ExportWebPageEventList请求参数结构体
Instance Attribute Summary collapse
-
#By ⇒ Object
- IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选
- EventType - String - 是否必填:否 - 事件类型
- EventStatus - String - 是否必填:否 - 事件状态
. -
#Filters ⇒ Object
- IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选
- EventType - String - 是否必填:否 - 事件类型
- EventStatus - String - 是否必填:否 - 事件状态
. -
#Order ⇒ Object
- IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选
- EventType - String - 是否必填:否 - 事件类型
- EventStatus - String - 是否必填:否 - 事件状态
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filters = nil, by = nil, order = nil) ⇒ ExportWebPageEventListRequest
constructor
A new instance of ExportWebPageEventListRequest.
Constructor Details
#initialize(filters = nil, by = nil, order = nil) ⇒ ExportWebPageEventListRequest
Returns a new instance of ExportWebPageEventListRequest.
28828 28829 28830 28831 28832 |
# File 'lib/v20180228/models.rb', line 28828 def initialize(filters=nil, by=nil, order=nil) @Filters = filters @By = by @Order = order end |
Instance Attribute Details
#By ⇒ Object
28826 28827 28828 |
# File 'lib/v20180228/models.rb', line 28826 def By @By end |
#Filters ⇒ Object
28826 28827 28828 |
# File 'lib/v20180228/models.rb', line 28826 def Filters @Filters end |
#Order ⇒ Object
28826 28827 28828 |
# File 'lib/v20180228/models.rb', line 28826 def Order @Order end |
Instance Method Details
#deserialize(params) ⇒ Object
28834 28835 28836 28837 28838 28839 28840 28841 28842 28843 28844 28845 |
# File 'lib/v20180228/models.rb', line 28834 def deserialize(params) unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| assetfilters_tmp = AssetFilters.new assetfilters_tmp.deserialize(i) @Filters << assetfilters_tmp end end @By = params['By'] @Order = params['Order'] end |