Class: Google::Apis::SheetsV4::UpdateBandingRequest
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::UpdateBandingRequest
- 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
-
#banded_range ⇒ Google::Apis::SheetsV4::BandedRange
A banded (alternating colors) range in a sheet.
-
#fields ⇒ String
The fields that should be updated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateBandingRequest
constructor
A new instance of UpdateBandingRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UpdateBandingRequest
Returns a new instance of UpdateBandingRequest.
10407 10408 10409 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 10407 def initialize(**args) update!(**args) end |
Instance Attribute Details
#banded_range ⇒ Google::Apis::SheetsV4::BandedRange
A banded (alternating colors) range in a sheet.
Corresponds to the JSON property bandedRange
10398 10399 10400 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 10398 def banded_range @banded_range end |
#fields ⇒ String
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
10405 10406 10407 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 10405 def fields @fields end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10412 10413 10414 10415 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 10412 def update!(**args) @banded_range = args[:banded_range] if args.key?(:banded_range) @fields = args[:fields] if args.key?(:fields) end |