Class: TencentCloud::Wedata::V20210820::CompareRule
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::CompareRule
- Defined in:
- lib/v20210820/models.rb
Overview
对比规则
Instance Attribute Summary collapse
-
#ComputeExpression ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#CycleStep ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(items = nil, cyclestep = nil, computeexpression = nil) ⇒ CompareRule
constructor
A new instance of CompareRule.
Constructor Details
#initialize(items = nil, cyclestep = nil, computeexpression = nil) ⇒ CompareRule
Returns a new instance of CompareRule.
4146 4147 4148 4149 4150 |
# File 'lib/v20210820/models.rb', line 4146 def initialize(items=nil, cyclestep=nil, computeexpression=nil) @Items = items @CycleStep = cyclestep @ComputeExpression = computeexpression end |
Instance Attribute Details
#ComputeExpression ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
4144 4145 4146 |
# File 'lib/v20210820/models.rb', line 4144 def ComputeExpression @ComputeExpression end |
#CycleStep ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
4144 4145 4146 |
# File 'lib/v20210820/models.rb', line 4144 def CycleStep @CycleStep end |
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
4144 4145 4146 |
# File 'lib/v20210820/models.rb', line 4144 def Items @Items end |
Instance Method Details
#deserialize(params) ⇒ Object
4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 |
# File 'lib/v20210820/models.rb', line 4152 def deserialize(params) unless params['Items'].nil? @Items = [] params['Items'].each do |i| compareruleitem_tmp = CompareRuleItem.new compareruleitem_tmp.deserialize(i) @Items << compareruleitem_tmp end end @CycleStep = params['CycleStep'] @ComputeExpression = params['ComputeExpression'] end |