class Google::Apis::DocsV1::NamedRanges

A collection of all the NamedRanges in the document that share a given name.

Attributes

name[RW]

The name that all the named ranges share. Corresponds to the JSON property `name` @return [String]

named_ranges[RW]

The NamedRanges that share the same name. Corresponds to the JSON property `namedRanges` @return [Array<Google::Apis::DocsV1::NamedRange>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/docs_v1/classes.rb, line 2610
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/docs_v1/classes.rb, line 2615
def update!(**args)
  @name = args[:name] if args.key?(:name)
  @named_ranges = args[:named_ranges] if args.key?(:named_ranges)
end