Class: TencentCloud::Dts::V20211206::DifferenceDetail

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

Overview

数据不一致的表详情

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, items = nil) ⇒ DifferenceDetail

Returns a new instance of DifferenceDetail.



3793
3794
3795
3796
# File 'lib/v20211206/models.rb', line 3793

def initialize(totalcount=nil, items=nil)
  @TotalCount = totalcount
  @Items = items
end

Instance Attribute Details

#ItemsObject

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

Parameters:

  • TotalCount:

    数据不一致的表数量

  • Items:

    校验不一致的表详情



3791
3792
3793
# File 'lib/v20211206/models.rb', line 3791

def Items
  @Items
end

#TotalCountObject

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

Parameters:

  • TotalCount:

    数据不一致的表数量

  • Items:

    校验不一致的表详情



3791
3792
3793
# File 'lib/v20211206/models.rb', line 3791

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
# File 'lib/v20211206/models.rb', line 3798

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['Items'].nil?
    @Items = []
    params['Items'].each do |i|
      differenceitem_tmp = DifferenceItem.new
      differenceitem_tmp.deserialize(i)
      @Items << differenceitem_tmp
    end
  end
end