Class: TencentCloud::Wedata::V20250806::ListProcessLineagePage

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

Overview

ListLineagePage

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(items = nil, pagecount = nil, pagesize = nil, pagenumber = nil, totalcount = nil) ⇒ ListProcessLineagePage

Returns a new instance of ListProcessLineagePage.



7392
7393
7394
7395
7396
7397
7398
# File 'lib/v20250806/models.rb', line 7392

def initialize(items=nil, pagecount=nil, pagesize=nil, pagenumber=nil, totalcount=nil)
  @Items = items
  @PageCount = pagecount
  @PageSize = pagesize
  @PageNumber = pagenumber
  @TotalCount = totalcount
end

Instance Attribute Details

#ItemsObject

Parameters:

  • Items:

    血缘pair列表

  • PageCount:

    分页总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码

  • TotalCount:

    记录总数



7390
7391
7392
# File 'lib/v20250806/models.rb', line 7390

def Items
  @Items
end

#PageCountObject

Parameters:

  • Items:

    血缘pair列表

  • PageCount:

    分页总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码

  • TotalCount:

    记录总数



7390
7391
7392
# File 'lib/v20250806/models.rb', line 7390

def PageCount
  @PageCount
end

#PageNumberObject

Parameters:

  • Items:

    血缘pair列表

  • PageCount:

    分页总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码

  • TotalCount:

    记录总数



7390
7391
7392
# File 'lib/v20250806/models.rb', line 7390

def PageNumber
  @PageNumber
end

#PageSizeObject

Parameters:

  • Items:

    血缘pair列表

  • PageCount:

    分页总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码

  • TotalCount:

    记录总数



7390
7391
7392
# File 'lib/v20250806/models.rb', line 7390

def PageSize
  @PageSize
end

#TotalCountObject

Parameters:

  • Items:

    血缘pair列表

  • PageCount:

    分页总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码

  • TotalCount:

    记录总数



7390
7391
7392
# File 'lib/v20250806/models.rb', line 7390

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
# File 'lib/v20250806/models.rb', line 7400

def deserialize(params)
  unless params['Items'].nil?
    @Items = []
    params['Items'].each do |i|
      lineagepair_tmp = LineagePair.new
      lineagepair_tmp.deserialize(i)
      @Items << lineagepair_tmp
    end
  end
  @PageCount = params['PageCount']
  @PageSize = params['PageSize']
  @PageNumber = params['PageNumber']
  @TotalCount = params['TotalCount']
end