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.



10224
10225
10226
# File 'lib/google/apis/sheets_v4/classes.rb', line 10224

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



10215
10216
10217
# File 'lib/google/apis/sheets_v4/classes.rb', line 10215

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)


10222
10223
10224
# File 'lib/google/apis/sheets_v4/classes.rb', line 10222

def fields
  @fields
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10229
10230
10231
10232
# File 'lib/google/apis/sheets_v4/classes.rb', line 10229

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