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.



8485
8486
8487
8488
8489
8490
8491
# File 'lib/v20210820/models.rb', line 8485

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:

    分页大小



8483
8484
8485
# File 'lib/v20210820/models.rb', line 8483

def PageNumber
  @PageNumber
end

#PageSizeObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



8483
8484
8485
# File 'lib/v20210820/models.rb', line 8483

def PageSize
  @PageSize
end

#RowsObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



8483
8484
8485
# File 'lib/v20210820/models.rb', line 8483

def Rows
  @Rows
end

#TotalCountObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



8483
8484
8485
# File 'lib/v20210820/models.rb', line 8483

def TotalCount
  @TotalCount
end

#TotalPageNumberObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



8483
8484
8485
# File 'lib/v20210820/models.rb', line 8483

def TotalPageNumber
  @TotalPageNumber
end

Instance Method Details

#deserialize(params) ⇒ Object



8493
8494
8495
8496
8497
8498
8499
8500
8501
8502
8503
8504
8505
8506
# File 'lib/v20210820/models.rb', line 8493

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