Class: TencentCloud::Wedata::V20210820::DescribeApply

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

Overview

申请列表

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(rows = nil, totalpagenumber = nil, totalcount = nil, pagenumber = nil, pagesize = nil) ⇒ DescribeApply

Returns a new instance of DescribeApply.



8902
8903
8904
8905
8906
8907
8908
# File 'lib/v20210820/models.rb', line 8902

def initialize(rows=nil, totalpagenumber=nil, totalcount=nil, pagenumber=nil, pagesize=nil)
  @Rows = rows
  @TotalPageNumber = totalpagenumber
  @TotalCount = totalcount
  @PageNumber = pagenumber
  @PageSize = pagesize
end

Instance Attribute Details

#PageNumberObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



8900
8901
8902
# File 'lib/v20210820/models.rb', line 8900

def PageNumber
  @PageNumber
end

#PageSizeObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



8900
8901
8902
# File 'lib/v20210820/models.rb', line 8900

def PageSize
  @PageSize
end

#RowsObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



8900
8901
8902
# File 'lib/v20210820/models.rb', line 8900

def Rows
  @Rows
end

#TotalCountObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



8900
8901
8902
# File 'lib/v20210820/models.rb', line 8900

def TotalCount
  @TotalCount
end

#TotalPageNumberObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



8900
8901
8902
# File 'lib/v20210820/models.rb', line 8900

def TotalPageNumber
  @TotalPageNumber
end

Instance Method Details

#deserialize(params) ⇒ Object



8910
8911
8912
8913
8914
8915
8916
8917
8918
8919
8920
8921
8922
8923
# File 'lib/v20210820/models.rb', line 8910

def deserialize(params)
  unless params['Rows'].nil?
    @Rows = []
    params['Rows'].each do |i|
      apply_tmp = Apply.new
      apply_tmp.deserialize(i)
      @Rows << apply_tmp
    end
  end
  @TotalPageNumber = params['TotalPageNumber']
  @TotalCount = params['TotalCount']
  @PageNumber = params['PageNumber']
  @PageSize = params['PageSize']
end