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.



6145
6146
6147
6148
6149
6150
6151
# File 'lib/v20250806/models.rb', line 6145

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:

    分页页码



6143
6144
6145
# File 'lib/v20250806/models.rb', line 6143

def Items
  @Items
end

#PageNumberObject

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

Parameters:

  • Items:

    记录列表

  • TotalCount:

    结果总数

  • TotalPageNumber:

    总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码



6143
6144
6145
# File 'lib/v20250806/models.rb', line 6143

def PageNumber
  @PageNumber
end

#PageSizeObject

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

Parameters:

  • Items:

    记录列表

  • TotalCount:

    结果总数

  • TotalPageNumber:

    总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码



6143
6144
6145
# File 'lib/v20250806/models.rb', line 6143

def PageSize
  @PageSize
end

#TotalCountObject

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

Parameters:

  • Items:

    记录列表

  • TotalCount:

    结果总数

  • TotalPageNumber:

    总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码



6143
6144
6145
# File 'lib/v20250806/models.rb', line 6143

def TotalCount
  @TotalCount
end

#TotalPageNumberObject

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

Parameters:

  • Items:

    记录列表

  • TotalCount:

    结果总数

  • TotalPageNumber:

    总页数

  • PageSize:

    分页大小

  • PageNumber:

    分页页码



6143
6144
6145
# File 'lib/v20250806/models.rb', line 6143

def TotalPageNumber
  @TotalPageNumber
end

Instance Method Details

#deserialize(params) ⇒ Object



6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
# File 'lib/v20250806/models.rb', line 6153

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