Class: TencentCloud::Wedata::V20210820::WorkflowExtOpsDtoPage

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

Overview

用户生产工作流列表分页

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, items = nil) ⇒ WorkflowExtOpsDtoPage

Returns a new instance of WorkflowExtOpsDtoPage.



26254
26255
26256
26257
# File 'lib/v20210820/models.rb', line 26254

def initialize(totalcount=nil, items=nil)
  @TotalCount = totalcount
  @Items = items
end

Instance Attribute Details

#ItemsObject

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

Parameters:

  • TotalCount:

    记录总数

  • Items:

    记录列表



26252
26253
26254
# File 'lib/v20210820/models.rb', line 26252

def Items
  @Items
end

#TotalCountObject

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

Parameters:

  • TotalCount:

    记录总数

  • Items:

    记录列表



26252
26253
26254
# File 'lib/v20210820/models.rb', line 26252

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



26259
26260
26261
26262
26263
26264
26265
26266
26267
26268
26269
# File 'lib/v20210820/models.rb', line 26259

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['Items'].nil?
    @Items = []
    params['Items'].each do |i|
      workflowextopsdto_tmp = WorkflowExtOpsDto.new
      workflowextopsdto_tmp.deserialize(i)
      @Items << workflowextopsdto_tmp
    end
  end
end