Class: Google::Apis::DocsV1::DeleteNamedRangeRequest
- Inherits:
-
Object
- Object
- Google::Apis::DocsV1::DeleteNamedRangeRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/docs_v1/classes.rb,
lib/google/apis/docs_v1/representations.rb,
lib/google/apis/docs_v1/representations.rb
Overview
Deletes a NamedRange.
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the range(s) to delete.
-
#named_range_id ⇒ String
The ID of the named range to delete.
-
#tabs_criteria ⇒ Google::Apis::DocsV1::TabsCriteria
A criteria that specifies in which tabs a request executes.
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.
802 803 804 |
# File 'lib/google/apis/docs_v1/classes.rb', line 802 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
The name of the range(s) to delete. All named ranges with the given name will
be deleted.
Corresponds to the JSON property name
790 791 792 |
# File 'lib/google/apis/docs_v1/classes.rb', line 790 def name @name end |
#named_range_id ⇒ String
The ID of the named range to delete.
Corresponds to the JSON property namedRangeId
795 796 797 |
# File 'lib/google/apis/docs_v1/classes.rb', line 795 def named_range_id @named_range_id end |
#tabs_criteria ⇒ Google::Apis::DocsV1::TabsCriteria
A criteria that specifies in which tabs a request executes.
Corresponds to the JSON property tabsCriteria
800 801 802 |
# File 'lib/google/apis/docs_v1/classes.rb', line 800 def tabs_criteria @tabs_criteria end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
807 808 809 810 811 |
# File 'lib/google/apis/docs_v1/classes.rb', line 807 def update!(**args) @name = args[:name] if args.key?(:name) @named_range_id = args[:named_range_id] if args.key?(:named_range_id) @tabs_criteria = args[:tabs_criteria] if args.key?(:tabs_criteria) end |