Class: TencentCloud::Wedata::V20210820::WorkflowExtOpsDtoPage
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::WorkflowExtOpsDtoPage
- Defined in:
- lib/v20210820/models.rb
Overview
用户生产工作流列表分页
Instance Attribute Summary collapse
-
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil) ⇒ WorkflowExtOpsDtoPage
constructor
A new instance of WorkflowExtOpsDtoPage.
Constructor Details
#initialize(totalcount = nil, items = nil) ⇒ WorkflowExtOpsDtoPage
Returns a new instance of WorkflowExtOpsDtoPage.
41245 41246 41247 41248 |
# File 'lib/v20210820/models.rb', line 41245 def initialize(totalcount=nil, items=nil) @TotalCount = totalcount @Items = items end |
Instance Attribute Details
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
41243 41244 41245 |
# File 'lib/v20210820/models.rb', line 41243 def Items @Items end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
41243 41244 41245 |
# File 'lib/v20210820/models.rb', line 41243 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
41250 41251 41252 41253 41254 41255 41256 41257 41258 41259 41260 |
# File 'lib/v20210820/models.rb', line 41250 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 |