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.
4901 4902 4903 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 4901 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
4899 4900 4901 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 4899 def named_range_id @named_range_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4906 4907 4908 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 4906 def update!(**args) @named_range_id = args[:named_range_id] if args.key?(:named_range_id) end |