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.



10402
10403
10404
# File 'lib/google/apis/sheets_v4/classes.rb', line 10402

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



10393
10394
10395
# File 'lib/google/apis/sheets_v4/classes.rb', line 10393

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)


10400
10401
10402
# File 'lib/google/apis/sheets_v4/classes.rb', line 10400

def fields
  @fields
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10407
10408
10409
10410
# File 'lib/google/apis/sheets_v4/classes.rb', line 10407

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