Class: TencentCloud::Wedata::V20250806::TaskInstancePage
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20250806::TaskInstancePage
- 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(totalcount = nil, totalpagenumber = nil, pagenumber = nil, pagesize = nil, items = nil) ⇒ TaskInstancePage
constructor
A new instance of TaskInstancePage.
Constructor Details
#initialize(totalcount = nil, totalpagenumber = nil, pagenumber = nil, pagesize = nil, items = nil) ⇒ TaskInstancePage
Returns a new instance of TaskInstancePage.
12368 12369 12370 12371 12372 12373 12374 |
# File 'lib/v20250806/models.rb', line 12368 def initialize(totalcount=nil, totalpagenumber=nil, pagenumber=nil, pagesize=nil, items=nil) @TotalCount = totalcount @TotalPageNumber = totalpagenumber @PageNumber = pagenumber @PageSize = pagesize @Items = items end |
Instance Attribute Details
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
12366 12367 12368 |
# File 'lib/v20250806/models.rb', line 12366 def Items @Items end |
#PageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
12366 12367 12368 |
# File 'lib/v20250806/models.rb', line 12366 def PageNumber @PageNumber end |
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
12366 12367 12368 |
# File 'lib/v20250806/models.rb', line 12366 def PageSize @PageSize end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
12366 12367 12368 |
# File 'lib/v20250806/models.rb', line 12366 def TotalCount @TotalCount end |
#TotalPageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
12366 12367 12368 |
# File 'lib/v20250806/models.rb', line 12366 def TotalPageNumber @TotalPageNumber end |
Instance Method Details
#deserialize(params) ⇒ Object
12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 |
# File 'lib/v20250806/models.rb', line 12376 def deserialize(params) @TotalCount = params['TotalCount'] @TotalPageNumber = params['TotalPageNumber'] @PageNumber = params['PageNumber'] @PageSize = params['PageSize'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| taskinstance_tmp = TaskInstance.new taskinstance_tmp.deserialize(i) @Items << taskinstance_tmp end end end |