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.



25984
25985
25986
25987
25988
# File 'lib/v20210820/models.rb', line 25984

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:

    分页大小



25982
25983
25984
# File 'lib/v20210820/models.rb', line 25982

def Items
  @Items
end

#PageSizeObject

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

Parameters:

  • TotalCount:

    总数

  • Items:

    data

  • PageSize:

    分页大小



25982
25983
25984
# File 'lib/v20210820/models.rb', line 25982

def PageSize
  @PageSize
end

#TotalCountObject

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

Parameters:

  • TotalCount:

    总数

  • Items:

    data

  • PageSize:

    分页大小



25982
25983
25984
# File 'lib/v20210820/models.rb', line 25982

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



25990
25991
25992
25993
25994
25995
25996
25997
25998
25999
26000
26001
# File 'lib/v20210820/models.rb', line 25990

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