Class: Google::Apis::SheetsV4::UpdateBandingRequest

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

Updates properties of the supplied banded range.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UpdateBandingRequest

Returns a new instance of UpdateBandingRequest.



10358
10359
10360
# File 'lib/google/apis/sheets_v4/classes.rb', line 10358

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#banded_rangeGoogle::Apis::SheetsV4::BandedRange

A banded (alternating colors) range in a sheet. Corresponds to the JSON property bandedRange



10349
10350
10351
# File 'lib/google/apis/sheets_v4/classes.rb', line 10349

def banded_range
  @banded_range
end

#fieldsString

The fields that should be updated. At least one field must be specified. The root bandedRange is implied and should not be specified. A single "*" can be used as short-hand for listing every field. Corresponds to the JSON property fields

Returns:

  • (String)


10356
10357
10358
# File 'lib/google/apis/sheets_v4/classes.rb', line 10356

def fields
  @fields
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10363
10364
10365
10366
# File 'lib/google/apis/sheets_v4/classes.rb', line 10363

def update!(**args)
  @banded_range = args[:banded_range] if args.key?(:banded_range)
  @fields = args[:fields] if args.key?(:fields)
end