Class: TencentCloud::Wedata::V20210820::DescribeBatchOperateTaskPage

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20210820/models.rb

Overview

批量操作任务列表分页

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(pagecount = nil, items = nil, totalcount = nil) ⇒ DescribeBatchOperateTaskPage

Returns a new instance of DescribeBatchOperateTaskPage.



6303
6304
6305
6306
6307
# File 'lib/v20210820/models.rb', line 6303

def initialize(pagecount=nil, items=nil, totalcount=nil)
  @PageCount = pagecount
  @Items = items
  @TotalCount = totalcount
end

Instance Attribute Details

#ItemsObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • PageCount:

    总页码数

  • Items:

    内容

  • TotalCount:

    总个数



6301
6302
6303
# File 'lib/v20210820/models.rb', line 6301

def Items
  @Items
end

#PageCountObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • PageCount:

    总页码数

  • Items:

    内容

  • TotalCount:

    总个数



6301
6302
6303
# File 'lib/v20210820/models.rb', line 6301

def PageCount
  @PageCount
end

#TotalCountObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • PageCount:

    总页码数

  • Items:

    内容

  • TotalCount:

    总个数



6301
6302
6303
# File 'lib/v20210820/models.rb', line 6301

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
# File 'lib/v20210820/models.rb', line 6309

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