Class: Google::Apis::SheetsV4::DeleteDuplicatesResponse
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::DeleteDuplicatesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb
Overview
The result of removing duplicates in a range.
Instance Attribute Summary collapse
-
#duplicates_removed_count ⇒ Fixnum
The number of duplicate rows removed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeleteDuplicatesResponse
constructor
A new instance of DeleteDuplicatesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeleteDuplicatesResponse
Returns a new instance of DeleteDuplicatesResponse.
4622 4623 4624 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4622 def initialize(**args) update!(**args) end |
Instance Attribute Details
#duplicates_removed_count ⇒ Fixnum
The number of duplicate rows removed.
Corresponds to the JSON property duplicatesRemovedCount
4620 4621 4622 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4620 def duplicates_removed_count @duplicates_removed_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4627 4628 4629 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4627 def update!(**args) @duplicates_removed_count = args[:duplicates_removed_count] if args.key?(:duplicates_removed_count) end |