Class: TencentCloud::Wedata::V20210820::WorkflowTaskCountOpsDto
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::WorkflowTaskCountOpsDto
- Defined in:
- lib/v20210820/models.rb
Overview
工作流任务统计
Instance Attribute Summary collapse
-
#Count ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#CycleCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TypeCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(count = nil, typecount = nil, cyclecount = nil) ⇒ WorkflowTaskCountOpsDto
constructor
A new instance of WorkflowTaskCountOpsDto.
Constructor Details
#initialize(count = nil, typecount = nil, cyclecount = nil) ⇒ WorkflowTaskCountOpsDto
Returns a new instance of WorkflowTaskCountOpsDto.
43153 43154 43155 43156 43157 |
# File 'lib/v20210820/models.rb', line 43153 def initialize(count=nil, typecount=nil, cyclecount=nil) @Count = count @TypeCount = typecount @CycleCount = cyclecount end |
Instance Attribute Details
#Count ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
43151 43152 43153 |
# File 'lib/v20210820/models.rb', line 43151 def Count @Count end |
#CycleCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
43151 43152 43153 |
# File 'lib/v20210820/models.rb', line 43151 def CycleCount @CycleCount end |
#TypeCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
43151 43152 43153 |
# File 'lib/v20210820/models.rb', line 43151 def TypeCount @TypeCount end |
Instance Method Details
#deserialize(params) ⇒ Object
43159 43160 43161 43162 43163 43164 43165 43166 43167 43168 43169 43170 43171 43172 43173 43174 43175 43176 43177 |
# File 'lib/v20210820/models.rb', line 43159 def deserialize(params) @Count = params['Count'] unless params['TypeCount'].nil? @TypeCount = [] params['TypeCount'].each do |i| pairdto_tmp = PairDto.new pairdto_tmp.deserialize(i) @TypeCount << pairdto_tmp end end unless params['CycleCount'].nil? @CycleCount = [] params['CycleCount'].each do |i| pairdto_tmp = PairDto.new pairdto_tmp.deserialize(i) @CycleCount << pairdto_tmp end end end |