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.



3667
3668
3669
3670
3671
3672
3673
# File 'lib/v20250806/models.rb', line 3667

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:

    分页数据



3665
3666
3667
# File 'lib/v20250806/models.rb', line 3665

def Items
  @Items
end

#PageNumberObject

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

Parameters:

  • TotalCount:

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

  • TotalPageNumber:

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

  • PageNumber:

    当前请求的数据页数。

  • PageSize:

    当前请求的数据页条数。

  • Items:

    分页数据



3665
3666
3667
# File 'lib/v20250806/models.rb', line 3665

def PageNumber
  @PageNumber
end

#PageSizeObject

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

Parameters:

  • TotalCount:

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

  • TotalPageNumber:

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

  • PageNumber:

    当前请求的数据页数。

  • PageSize:

    当前请求的数据页条数。

  • Items:

    分页数据



3665
3666
3667
# File 'lib/v20250806/models.rb', line 3665

def PageSize
  @PageSize
end

#TotalCountObject

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

Parameters:

  • TotalCount:

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

  • TotalPageNumber:

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

  • PageNumber:

    当前请求的数据页数。

  • PageSize:

    当前请求的数据页条数。

  • Items:

    分页数据



3665
3666
3667
# File 'lib/v20250806/models.rb', line 3665

def TotalCount
  @TotalCount
end

#TotalPageNumberObject

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

Parameters:

  • TotalCount:

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

  • TotalPageNumber:

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

  • PageNumber:

    当前请求的数据页数。

  • PageSize:

    当前请求的数据页条数。

  • Items:

    分页数据



3665
3666
3667
# File 'lib/v20250806/models.rb', line 3665

def TotalPageNumber
  @TotalPageNumber
end

Instance Method Details

#deserialize(params) ⇒ Object



3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
# File 'lib/v20250806/models.rb', line 3675

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