Class: TencentCloud::Wedata::V20210820::WorkFlowExecuteDtoByPage
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::WorkFlowExecuteDtoByPage
- Defined in:
- lib/v20210820/models.rb
Overview
分页查询工作流画布运行起止时间
Instance Attribute Summary collapse
-
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil, pagesize = nil) ⇒ WorkFlowExecuteDtoByPage
constructor
A new instance of WorkFlowExecuteDtoByPage.
Constructor Details
#initialize(totalcount = nil, items = nil, pagesize = nil) ⇒ WorkFlowExecuteDtoByPage
Returns a new instance of WorkFlowExecuteDtoByPage.
40834 40835 40836 40837 40838 |
# File 'lib/v20210820/models.rb', line 40834 def initialize(totalcount=nil, items=nil, pagesize=nil) @TotalCount = totalcount @Items = items @PageSize = pagesize end |
Instance Attribute Details
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
40832 40833 40834 |
# File 'lib/v20210820/models.rb', line 40832 def Items @Items end |
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
40832 40833 40834 |
# File 'lib/v20210820/models.rb', line 40832 def PageSize @PageSize end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
40832 40833 40834 |
# File 'lib/v20210820/models.rb', line 40832 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
40840 40841 40842 40843 40844 40845 40846 40847 40848 40849 40850 40851 |
# File 'lib/v20210820/models.rb', line 40840 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 |