Class: TencentCloud::Wedata::V20250806::ListTaskInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20250806::ListTaskInfo
- Defined in:
- lib/v20250806/models.rb
Overview
查询任务信息分页
Instance Attribute Summary collapse
-
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalPageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(items = nil, pagenumber = nil, pagesize = nil, totalcount = nil, totalpagenumber = nil) ⇒ ListTaskInfo
constructor
A new instance of ListTaskInfo.
Constructor Details
#initialize(items = nil, pagenumber = nil, pagesize = nil, totalcount = nil, totalpagenumber = nil) ⇒ ListTaskInfo
Returns a new instance of ListTaskInfo.
8176 8177 8178 8179 8180 8181 8182 |
# File 'lib/v20250806/models.rb', line 8176 def initialize(items=nil, pagenumber=nil, pagesize=nil, totalcount=nil, totalpagenumber=nil) @Items = items @PageNumber = pagenumber @PageSize = pagesize @TotalCount = totalcount @TotalPageNumber = totalpagenumber end |
Instance Attribute Details
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
8174 8175 8176 |
# File 'lib/v20250806/models.rb', line 8174 def Items @Items end |
#PageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
8174 8175 8176 |
# File 'lib/v20250806/models.rb', line 8174 def PageNumber @PageNumber end |
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
8174 8175 8176 |
# File 'lib/v20250806/models.rb', line 8174 def PageSize @PageSize end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
8174 8175 8176 |
# File 'lib/v20250806/models.rb', line 8174 def TotalCount @TotalCount end |
#TotalPageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
8174 8175 8176 |
# File 'lib/v20250806/models.rb', line 8174 def TotalPageNumber @TotalPageNumber end |
Instance Method Details
#deserialize(params) ⇒ Object
8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 |
# File 'lib/v20250806/models.rb', line 8184 def deserialize(params) unless params['Items'].nil? @Items = [] params['Items'].each do |i| taskbaseattribute_tmp = TaskBaseAttribute.new taskbaseattribute_tmp.deserialize(i) @Items << taskbaseattribute_tmp end end @PageNumber = params['PageNumber'] @PageSize = params['PageSize'] @TotalCount = params['TotalCount'] @TotalPageNumber = params['TotalPageNumber'] end |