Class: TencentCloud::Wedata::V20210820::ReportTaskListInfo

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, pagenum = nil, pagesize = nil, totalcount = nil, totalpagenumber = nil) ⇒ ReportTaskListInfo

Returns a new instance of ReportTaskListInfo.



30259
30260
30261
30262
30263
30264
30265
# File 'lib/v20210820/models.rb', line 30259

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

Instance Attribute Details

#PageNumObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Rows:

    任务列表详情

  • PageNum:

    页码

  • PageSize:

    每页条数

  • TotalCount:

    总记录数

  • TotalPageNumber:

    总页数



30257
30258
30259
# File 'lib/v20210820/models.rb', line 30257

def PageNum
  @PageNum
end

#PageSizeObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Rows:

    任务列表详情

  • PageNum:

    页码

  • PageSize:

    每页条数

  • TotalCount:

    总记录数

  • TotalPageNumber:

    总页数



30257
30258
30259
# File 'lib/v20210820/models.rb', line 30257

def PageSize
  @PageSize
end

#RowsObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Rows:

    任务列表详情

  • PageNum:

    页码

  • PageSize:

    每页条数

  • TotalCount:

    总记录数

  • TotalPageNumber:

    总页数



30257
30258
30259
# File 'lib/v20210820/models.rb', line 30257

def Rows
  @Rows
end

#TotalCountObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Rows:

    任务列表详情

  • PageNum:

    页码

  • PageSize:

    每页条数

  • TotalCount:

    总记录数

  • TotalPageNumber:

    总页数



30257
30258
30259
# File 'lib/v20210820/models.rb', line 30257

def TotalCount
  @TotalCount
end

#TotalPageNumberObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Rows:

    任务列表详情

  • PageNum:

    页码

  • PageSize:

    每页条数

  • TotalCount:

    总记录数

  • TotalPageNumber:

    总页数



30257
30258
30259
# File 'lib/v20210820/models.rb', line 30257

def TotalPageNumber
  @TotalPageNumber
end

Instance Method Details

#deserialize(params) ⇒ Object



30267
30268
30269
30270
30271
30272
30273
30274
30275
30276
30277
30278
30279
30280
# File 'lib/v20210820/models.rb', line 30267

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