Class: TencentCloud::Wedata::V20250806::ListWorkflowInfo

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

Overview

查询工作流分页列表

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(items = nil, totalpagenumber = nil, pagenumber = nil, pagesize = nil, totalcount = nil) ⇒ ListWorkflowInfo

Returns a new instance of ListWorkflowInfo.



5497
5498
5499
5500
5501
5502
5503
# File 'lib/v20250806/models.rb', line 5497

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

Instance Attribute Details

#ItemsObject

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

Parameters:

  • Items:

    列表item

  • TotalPageNumber:

    满足查询条件的数据总页数

  • PageNumber:

    当前请求的数据页数

  • PageSize:

    当前请求的数据页条数

  • TotalCount:

    满足查询条件的数据总条数



5495
5496
5497
# File 'lib/v20250806/models.rb', line 5495

def Items
  @Items
end

#PageNumberObject

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

Parameters:

  • Items:

    列表item

  • TotalPageNumber:

    满足查询条件的数据总页数

  • PageNumber:

    当前请求的数据页数

  • PageSize:

    当前请求的数据页条数

  • TotalCount:

    满足查询条件的数据总条数



5495
5496
5497
# File 'lib/v20250806/models.rb', line 5495

def PageNumber
  @PageNumber
end

#PageSizeObject

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

Parameters:

  • Items:

    列表item

  • TotalPageNumber:

    满足查询条件的数据总页数

  • PageNumber:

    当前请求的数据页数

  • PageSize:

    当前请求的数据页条数

  • TotalCount:

    满足查询条件的数据总条数



5495
5496
5497
# File 'lib/v20250806/models.rb', line 5495

def PageSize
  @PageSize
end

#TotalCountObject

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

Parameters:

  • Items:

    列表item

  • TotalPageNumber:

    满足查询条件的数据总页数

  • PageNumber:

    当前请求的数据页数

  • PageSize:

    当前请求的数据页条数

  • TotalCount:

    满足查询条件的数据总条数



5495
5496
5497
# File 'lib/v20250806/models.rb', line 5495

def TotalCount
  @TotalCount
end

#TotalPageNumberObject

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

Parameters:

  • Items:

    列表item

  • TotalPageNumber:

    满足查询条件的数据总页数

  • PageNumber:

    当前请求的数据页数

  • PageSize:

    当前请求的数据页条数

  • TotalCount:

    满足查询条件的数据总条数



5495
5496
5497
# File 'lib/v20250806/models.rb', line 5495

def TotalPageNumber
  @TotalPageNumber
end

Instance Method Details

#deserialize(params) ⇒ Object



5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
# File 'lib/v20250806/models.rb', line 5505

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