Class: TencentCloud::Wedata::V20250806::OpsWorkflows

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

Returns a new instance of OpsWorkflows.



9586
9587
9588
9589
9590
9591
9592
# File 'lib/v20250806/models.rb', line 9586

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

Instance Attribute Details

#ItemsObject

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

Parameters:

  • Items:

    记录列表

  • TotalCount:

    结果总数

  • TotalPageNumber:

    总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码



9584
9585
9586
# File 'lib/v20250806/models.rb', line 9584

def Items
  @Items
end

#PageNumberObject

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

Parameters:

  • Items:

    记录列表

  • TotalCount:

    结果总数

  • TotalPageNumber:

    总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码



9584
9585
9586
# File 'lib/v20250806/models.rb', line 9584

def PageNumber
  @PageNumber
end

#PageSizeObject

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

Parameters:

  • Items:

    记录列表

  • TotalCount:

    结果总数

  • TotalPageNumber:

    总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码



9584
9585
9586
# File 'lib/v20250806/models.rb', line 9584

def PageSize
  @PageSize
end

#TotalCountObject

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

Parameters:

  • Items:

    记录列表

  • TotalCount:

    结果总数

  • TotalPageNumber:

    总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码



9584
9585
9586
# File 'lib/v20250806/models.rb', line 9584

def TotalCount
  @TotalCount
end

#TotalPageNumberObject

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

Parameters:

  • Items:

    记录列表

  • TotalCount:

    结果总数

  • TotalPageNumber:

    总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码



9584
9585
9586
# File 'lib/v20250806/models.rb', line 9584

def TotalPageNumber
  @TotalPageNumber
end

Instance Method Details

#deserialize(params) ⇒ Object



9594
9595
9596
9597
9598
9599
9600
9601
9602
9603
9604
9605
9606
9607
# File 'lib/v20250806/models.rb', line 9594

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