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.



6049
6050
6051
6052
6053
6054
6055
# File 'lib/v20210820/models.rb', line 6049

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:

    分页大小



6047
6048
6049
# File 'lib/v20210820/models.rb', line 6047

def PageNumber
  @PageNumber
end

#PageSizeObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



6047
6048
6049
# File 'lib/v20210820/models.rb', line 6047

def PageSize
  @PageSize
end

#RowsObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



6047
6048
6049
# File 'lib/v20210820/models.rb', line 6047

def Rows
  @Rows
end

#TotalCountObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



6047
6048
6049
# File 'lib/v20210820/models.rb', line 6047

def TotalCount
  @TotalCount
end

#TotalPageNumberObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



6047
6048
6049
# File 'lib/v20210820/models.rb', line 6047

def TotalPageNumber
  @TotalPageNumber
end

Instance Method Details

#deserialize(params) ⇒ Object



6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
# File 'lib/v20210820/models.rb', line 6057

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