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.



26268
26269
26270
26271
26272
# File 'lib/v20210820/models.rb', line 26268

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:

    分页大小



26266
26267
26268
# File 'lib/v20210820/models.rb', line 26266

def Items
  @Items
end

#PageSizeObject

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

Parameters:

  • TotalCount:

    总数

  • Items:

    data

  • PageSize:

    分页大小



26266
26267
26268
# File 'lib/v20210820/models.rb', line 26266

def PageSize
  @PageSize
end

#TotalCountObject

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

Parameters:

  • TotalCount:

    总数

  • Items:

    data

  • PageSize:

    分页大小



26266
26267
26268
# File 'lib/v20210820/models.rb', line 26266

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



26274
26275
26276
26277
26278
26279
26280
26281
26282
26283
26284
26285
# File 'lib/v20210820/models.rb', line 26274

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