Class: TencentCloud::Wedata::V20250806::DependencyConfigPage

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

Overview

查询任务上游依赖详情分页

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, totalpagenumber = nil, pagenumber = nil, pagesize = nil, items = nil) ⇒ DependencyConfigPage

Returns a new instance of DependencyConfigPage.



2366
2367
2368
2369
2370
2371
2372
# File 'lib/v20250806/models.rb', line 2366

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

#ItemsObject

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

Parameters:

  • TotalCount:

    满足查询条件的数据总条数。

  • TotalPageNumber:

    满足查询条件的数据总页数。

  • PageNumber:

    当前请求的数据页数。

  • PageSize:

    当前请求的数据页条数。

  • Items:

    分页数据



2364
2365
2366
# File 'lib/v20250806/models.rb', line 2364

def Items
  @Items
end

#PageNumberObject

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

Parameters:

  • TotalCount:

    满足查询条件的数据总条数。

  • TotalPageNumber:

    满足查询条件的数据总页数。

  • PageNumber:

    当前请求的数据页数。

  • PageSize:

    当前请求的数据页条数。

  • Items:

    分页数据



2364
2365
2366
# File 'lib/v20250806/models.rb', line 2364

def PageNumber
  @PageNumber
end

#PageSizeObject

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

Parameters:

  • TotalCount:

    满足查询条件的数据总条数。

  • TotalPageNumber:

    满足查询条件的数据总页数。

  • PageNumber:

    当前请求的数据页数。

  • PageSize:

    当前请求的数据页条数。

  • Items:

    分页数据



2364
2365
2366
# File 'lib/v20250806/models.rb', line 2364

def PageSize
  @PageSize
end

#TotalCountObject

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

Parameters:

  • TotalCount:

    满足查询条件的数据总条数。

  • TotalPageNumber:

    满足查询条件的数据总页数。

  • PageNumber:

    当前请求的数据页数。

  • PageSize:

    当前请求的数据页条数。

  • Items:

    分页数据



2364
2365
2366
# File 'lib/v20250806/models.rb', line 2364

def TotalCount
  @TotalCount
end

#TotalPageNumberObject

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

Parameters:

  • TotalCount:

    满足查询条件的数据总条数。

  • TotalPageNumber:

    满足查询条件的数据总页数。

  • PageNumber:

    当前请求的数据页数。

  • PageSize:

    当前请求的数据页条数。

  • Items:

    分页数据



2364
2365
2366
# File 'lib/v20250806/models.rb', line 2364

def TotalPageNumber
  @TotalPageNumber
end

Instance Method Details

#deserialize(params) ⇒ Object



2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
# File 'lib/v20250806/models.rb', line 2374

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|
      taskdependdto_tmp = TaskDependDto.new
      taskdependdto_tmp.deserialize(i)
      @Items << taskdependdto_tmp
    end
  end
end