Class: TencentCloud::Wedata::V20210820::WorkFlowExecuteDtoByPage

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, pagesize = nil) ⇒ WorkFlowExecuteDtoByPage

Returns a new instance of WorkFlowExecuteDtoByPage.



42453
42454
42455
42456
42457
# File 'lib/v20210820/models.rb', line 42453

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

Instance Attribute Details

#ItemsObject

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

Parameters:

  • TotalCount:

    总数

  • Items:

    data

  • PageSize:

    分页大小



42451
42452
42453
# File 'lib/v20210820/models.rb', line 42451

def Items
  @Items
end

#PageSizeObject

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

Parameters:

  • TotalCount:

    总数

  • Items:

    data

  • PageSize:

    分页大小



42451
42452
42453
# File 'lib/v20210820/models.rb', line 42451

def PageSize
  @PageSize
end

#TotalCountObject

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

Parameters:

  • TotalCount:

    总数

  • Items:

    data

  • PageSize:

    分页大小



42451
42452
42453
# File 'lib/v20210820/models.rb', line 42451

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



42459
42460
42461
42462
42463
42464
42465
42466
42467
42468
42469
42470
# File 'lib/v20210820/models.rb', line 42459

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