Class: TencentCloud::Dts::V20211206::DifferenceDetail
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dts::V20211206::DifferenceDetail
- Defined in:
- lib/v20211206/models.rb
Overview
数据不一致的表详情
Instance Attribute Summary collapse
-
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil) ⇒ DifferenceDetail
constructor
A new instance of DifferenceDetail.
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
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3791 3792 3793 |
# File 'lib/v20211206/models.rb', line 3791 def Items @Items end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
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 |