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.



5873
5874
5875
5876
5877
5878
5879
# File 'lib/v20210820/models.rb', line 5873

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:

    分页大小



5871
5872
5873
# File 'lib/v20210820/models.rb', line 5871

def PageNumber
  @PageNumber
end

#PageSizeObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



5871
5872
5873
# File 'lib/v20210820/models.rb', line 5871

def PageSize
  @PageSize
end

#RowsObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



5871
5872
5873
# File 'lib/v20210820/models.rb', line 5871

def Rows
  @Rows
end

#TotalCountObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



5871
5872
5873
# File 'lib/v20210820/models.rb', line 5871

def TotalCount
  @TotalCount
end

#TotalPageNumberObject

Parameters:

  • Rows:

    申请列表详情

  • TotalPageNumber:

    总分页页码

  • TotalCount:

    总个数

  • PageNumber:

    分页页码

  • PageSize:

    分页大小



5871
5872
5873
# File 'lib/v20210820/models.rb', line 5871

def TotalPageNumber
  @TotalPageNumber
end

Instance Method Details

#deserialize(params) ⇒ Object



5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
# File 'lib/v20210820/models.rb', line 5881

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