Class: TencentCloud::Wedata::V20210820::CompareResult

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20210820/models.rb

Overview

质量检查对比结果

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(items = nil, totalrows = nil, passrows = nil, triggerrows = nil, computeexpression = nil) ⇒ CompareResult

Returns a new instance of CompareResult.



4059
4060
4061
4062
4063
4064
4065
# File 'lib/v20210820/models.rb', line 4059

def initialize(items=nil, totalrows=nil, passrows=nil, triggerrows=nil, computeexpression=nil)
  @Items = items
  @TotalRows = totalrows
  @PassRows = passrows
  @TriggerRows = triggerrows
  @ComputeExpression = computeexpression
end

Instance Attribute Details

#ComputeExpressionObject

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

Parameters:

  • Items:

    对比结果项列表

  • TotalRows:

    检测总行数

  • PassRows:

    检测通过行数

  • TriggerRows:

    检测不通过行数

  • ComputeExpression:

    比较关系



4057
4058
4059
# File 'lib/v20210820/models.rb', line 4057

def ComputeExpression
  @ComputeExpression
end

#ItemsObject

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

Parameters:

  • Items:

    对比结果项列表

  • TotalRows:

    检测总行数

  • PassRows:

    检测通过行数

  • TriggerRows:

    检测不通过行数

  • ComputeExpression:

    比较关系



4057
4058
4059
# File 'lib/v20210820/models.rb', line 4057

def Items
  @Items
end

#PassRowsObject

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

Parameters:

  • Items:

    对比结果项列表

  • TotalRows:

    检测总行数

  • PassRows:

    检测通过行数

  • TriggerRows:

    检测不通过行数

  • ComputeExpression:

    比较关系



4057
4058
4059
# File 'lib/v20210820/models.rb', line 4057

def PassRows
  @PassRows
end

#TotalRowsObject

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

Parameters:

  • Items:

    对比结果项列表

  • TotalRows:

    检测总行数

  • PassRows:

    检测通过行数

  • TriggerRows:

    检测不通过行数

  • ComputeExpression:

    比较关系



4057
4058
4059
# File 'lib/v20210820/models.rb', line 4057

def TotalRows
  @TotalRows
end

#TriggerRowsObject

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

Parameters:

  • Items:

    对比结果项列表

  • TotalRows:

    检测总行数

  • PassRows:

    检测通过行数

  • TriggerRows:

    检测不通过行数

  • ComputeExpression:

    比较关系



4057
4058
4059
# File 'lib/v20210820/models.rb', line 4057

def TriggerRows
  @TriggerRows
end

Instance Method Details

#deserialize(params) ⇒ Object



4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
# File 'lib/v20210820/models.rb', line 4067

def deserialize(params)
  unless params['Items'].nil?
    @Items = []
    params['Items'].each do |i|
      compareresultitem_tmp = CompareResultItem.new
      compareresultitem_tmp.deserialize(i)
      @Items << compareresultitem_tmp
    end
  end
  @TotalRows = params['TotalRows']
  @PassRows = params['PassRows']
  @TriggerRows = params['TriggerRows']
  @ComputeExpression = params['ComputeExpression']
end