Class: TencentCloud::Dts::V20211206::DifferenceAdvancedObjectsDetail
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dts::V20211206::DifferenceAdvancedObjectsDetail
- Defined in:
- lib/v20211206/models.rb
Overview
数据库不一致的详情,mongodb业务用到
Instance Attribute Summary collapse
-
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil) ⇒ DifferenceAdvancedObjectsDetail
constructor
A new instance of DifferenceAdvancedObjectsDetail.
Constructor Details
#initialize(totalcount = nil, items = nil) ⇒ DifferenceAdvancedObjectsDetail
Returns a new instance of DifferenceAdvancedObjectsDetail.
3693 3694 3695 3696 |
# File 'lib/v20211206/models.rb', line 3693 def initialize(totalcount=nil, items=nil) @TotalCount = totalcount @Items = items end |
Instance Attribute Details
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3691 3692 3693 |
# File 'lib/v20211206/models.rb', line 3691 def Items @Items end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3691 3692 3693 |
# File 'lib/v20211206/models.rb', line 3691 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 |
# File 'lib/v20211206/models.rb', line 3698 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| advancedobjectsitem_tmp = AdvancedObjectsItem.new advancedobjectsitem_tmp.deserialize(i) @Items << advancedobjectsitem_tmp end end end |