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.
867 868 869 |
# File 'lib/google/apis/docs_v1/classes.rb', line 867 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
855 856 857 |
# File 'lib/google/apis/docs_v1/classes.rb', line 855 def name @name end |
#named_range_id ⇒ String
The ID of the named range to delete.
Corresponds to the JSON property namedRangeId
860 861 862 |
# File 'lib/google/apis/docs_v1/classes.rb', line 860 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
865 866 867 |
# File 'lib/google/apis/docs_v1/classes.rb', line 865 def tabs_criteria @tabs_criteria end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
872 873 874 875 876 |
# File 'lib/google/apis/docs_v1/classes.rb', line 872 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 |