Class: TencentCloud::Wav::V20210129::QueryCustomerEventDetailStatisticsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wav::V20210129::QueryCustomerEventDetailStatisticsResponse
- Defined in:
- lib/v20210129/models.rb
Overview
QueryCustomerEventDetailStatistics返回参数结构体
Instance Attribute Summary collapse
-
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(nextcursor = nil, pagedata = nil, requestid = nil) ⇒ QueryCustomerEventDetailStatisticsResponse
constructor
A new instance of QueryCustomerEventDetailStatisticsResponse.
Constructor Details
#initialize(nextcursor = nil, pagedata = nil, requestid = nil) ⇒ QueryCustomerEventDetailStatisticsResponse
Returns a new instance of QueryCustomerEventDetailStatisticsResponse.
2405 2406 2407 2408 2409 |
# File 'lib/v20210129/models.rb', line 2405 def initialize(nextcursor=nil, pagedata=nil, requestid=nil) @NextCursor = nextcursor @PageData = pagedata @RequestId = requestid end |
Instance Attribute Details
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2403 2404 2405 |
# File 'lib/v20210129/models.rb', line 2403 def NextCursor @NextCursor end |
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2403 2404 2405 |
# File 'lib/v20210129/models.rb', line 2403 def PageData @PageData end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2403 2404 2405 |
# File 'lib/v20210129/models.rb', line 2403 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 |
# File 'lib/v20210129/models.rb', line 2411 def deserialize(params) @NextCursor = params['NextCursor'] unless params['PageData'].nil? @PageData = [] params['PageData'].each do |i| customeractioneventdetail_tmp = CustomerActionEventDetail.new customeractioneventdetail_tmp.deserialize(i) @PageData << customeractioneventdetail_tmp end end @RequestId = params['RequestId'] end |