Class: TencentCloud::Wav::V20210129::QueryStaffEventDetailStatisticsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wav::V20210129::QueryStaffEventDetailStatisticsResponse
- Defined in:
- lib/v20210129/models.rb
Overview
QueryStaffEventDetailStatistics返回参数结构体
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) ⇒ QueryStaffEventDetailStatisticsResponse
constructor
A new instance of QueryStaffEventDetailStatisticsResponse.
Constructor Details
#initialize(nextcursor = nil, pagedata = nil, requestid = nil) ⇒ QueryStaffEventDetailStatisticsResponse
Returns a new instance of QueryStaffEventDetailStatisticsResponse.
3084 3085 3086 3087 3088 |
# File 'lib/v20210129/models.rb', line 3084 def initialize(nextcursor=nil, pagedata=nil, requestid=nil) @NextCursor = nextcursor @PageData = pagedata @RequestId = requestid end |
Instance Attribute Details
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
3082 3083 3084 |
# File 'lib/v20210129/models.rb', line 3082 def NextCursor @NextCursor end |
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
3082 3083 3084 |
# File 'lib/v20210129/models.rb', line 3082 def PageData @PageData end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
3082 3083 3084 |
# File 'lib/v20210129/models.rb', line 3082 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 |
# File 'lib/v20210129/models.rb', line 3090 def deserialize(params) @NextCursor = params['NextCursor'] unless params['PageData'].nil? @PageData = [] params['PageData'].each do |i| salesactioneventdetail_tmp = SalesActionEventDetail.new salesactioneventdetail_tmp.deserialize(i) @PageData << salesactioneventdetail_tmp end end @RequestId = params['RequestId'] end |