Class: TencentCloud::Wedata::V20250806::ListTablePage

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

Overview

ListTablePage

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of ListTablePage.



8069
8070
8071
8072
8073
8074
8075
# File 'lib/v20250806/models.rb', line 8069

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:

    Schema记录列表

  • PageCount:

    分页总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码

  • TotalCount:

    记录总数



8067
8068
8069
# File 'lib/v20250806/models.rb', line 8067

def Items
  @Items
end

#PageCountObject

Parameters:

  • Items:

    Schema记录列表

  • PageCount:

    分页总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码

  • TotalCount:

    记录总数



8067
8068
8069
# File 'lib/v20250806/models.rb', line 8067

def PageCount
  @PageCount
end

#PageNumberObject

Parameters:

  • Items:

    Schema记录列表

  • PageCount:

    分页总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码

  • TotalCount:

    记录总数



8067
8068
8069
# File 'lib/v20250806/models.rb', line 8067

def PageNumber
  @PageNumber
end

#PageSizeObject

Parameters:

  • Items:

    Schema记录列表

  • PageCount:

    分页总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码

  • TotalCount:

    记录总数



8067
8068
8069
# File 'lib/v20250806/models.rb', line 8067

def PageSize
  @PageSize
end

#TotalCountObject

Parameters:

  • Items:

    Schema记录列表

  • PageCount:

    分页总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码

  • TotalCount:

    记录总数



8067
8068
8069
# File 'lib/v20250806/models.rb', line 8067

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



8077
8078
8079
8080
8081
8082
8083
8084
8085
8086
8087
8088
8089
8090
# File 'lib/v20250806/models.rb', line 8077

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