Class: Google::Apis::SheetsV4::DeleteNamedRangeRequest
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::DeleteNamedRangeRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sheets_v4/classes.rb,
lib/google/apis/sheets_v4/representations.rb,
lib/google/apis/sheets_v4/representations.rb
Overview
Removes the named range with the given ID from the spreadsheet.
Instance Attribute Summary collapse
-
#named_range_id ⇒ String
The ID of the named range to delete.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeleteNamedRangeRequest
constructor
A new instance of DeleteNamedRangeRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeleteNamedRangeRequest
Returns a new instance of DeleteNamedRangeRequest.
4681 4682 4683 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 4681 def initialize(**args) update!(**args) end |
Instance Attribute Details
#named_range_id ⇒ String
The ID of the named range to delete.
Corresponds to the JSON property namedRangeId
4679 4680 4681 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 4679 def named_range_id @named_range_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4686 4687 4688 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 4686 def update!(**args) @named_range_id = args[:named_range_id] if args.key?(:named_range_id) end |