Class: TencentCloud::Dts::V20211206::DifferenceOwnerDetail
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dts::V20211206::DifferenceOwnerDetail
- Defined in:
- lib/v20211206/models.rb
Overview
pg owner不一致性详情
Instance Attribute Summary collapse
-
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil) ⇒ DifferenceOwnerDetail
constructor
A new instance of DifferenceOwnerDetail.
Constructor Details
#initialize(totalcount = nil, items = nil) ⇒ DifferenceOwnerDetail
Returns a new instance of DifferenceOwnerDetail.
3877 3878 3879 3880 |
# File 'lib/v20211206/models.rb', line 3877 def initialize(totalcount=nil, items=nil) @TotalCount = totalcount @Items = items end |
Instance Attribute Details
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3875 3876 3877 |
# File 'lib/v20211206/models.rb', line 3875 def Items @Items end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3875 3876 3877 |
# File 'lib/v20211206/models.rb', line 3875 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 |
# File 'lib/v20211206/models.rb', line 3882 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| ownerdifference_tmp = OwnerDifference.new ownerdifference_tmp.deserialize(i) @Items << ownerdifference_tmp end end end |