Class: TencentCloud::Dts::V20211206::SkippedDetail

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) ⇒ SkippedDetail

Returns a new instance of SkippedDetail.



6626
6627
6628
6629
# File 'lib/v20211206/models.rb', line 6626

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

Instance Attribute Details

#ItemsObject

Parameters:

  • 跳过的表数量

  • 跳过校验的表详情



6624
6625
6626
# File 'lib/v20211206/models.rb', line 6624

def Items
  @Items
end

#TotalCountObject

Parameters:

  • 跳过的表数量

  • 跳过校验的表详情



6624
6625
6626
# File 'lib/v20211206/models.rb', line 6624

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
# File 'lib/v20211206/models.rb', line 6631

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