Class: Google::Apis::DocsV1::DeleteNamedRangeRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#nameString

The name of the range(s) to delete. All named ranges with the given name will be deleted. Corresponds to the JSON property name

Returns:

  • (String)


790
791
792
# File 'lib/google/apis/docs_v1/classes.rb', line 790

def name
  @name
end

#named_range_idString

The ID of the named range to delete. Corresponds to the JSON property namedRangeId

Returns:

  • (String)


795
796
797
# File 'lib/google/apis/docs_v1/classes.rb', line 795

def named_range_id
  @named_range_id
end

#tabs_criteriaGoogle::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