Class: TencentCloud::Wedata::V20210820::DescribeBatchOperateTaskPage
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DescribeBatchOperateTaskPage
- Defined in:
- lib/v20210820/models.rb
Overview
批量操作任务列表分页
Instance Attribute Summary collapse
-
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(pagecount = nil, items = nil, totalcount = nil) ⇒ DescribeBatchOperateTaskPage
constructor
A new instance of DescribeBatchOperateTaskPage.
Constructor Details
#initialize(pagecount = nil, items = nil, totalcount = nil) ⇒ DescribeBatchOperateTaskPage
Returns a new instance of DescribeBatchOperateTaskPage.
8716 8717 8718 8719 8720 |
# File 'lib/v20210820/models.rb', line 8716 def initialize(pagecount=nil, items=nil, totalcount=nil) @PageCount = pagecount @Items = items @TotalCount = totalcount end |
Instance Attribute Details
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
8714 8715 8716 |
# File 'lib/v20210820/models.rb', line 8714 def Items @Items end |
#PageCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
8714 8715 8716 |
# File 'lib/v20210820/models.rb', line 8714 def PageCount @PageCount end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
8714 8715 8716 |
# File 'lib/v20210820/models.rb', line 8714 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 |
# File 'lib/v20210820/models.rb', line 8722 def deserialize(params) @PageCount = params['PageCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| describebatchoperatetaskdto_tmp = DescribeBatchOperateTaskDTO.new describebatchoperatetaskdto_tmp.deserialize(i) @Items << describebatchoperatetaskdto_tmp end end @TotalCount = params['TotalCount'] end |