Class: Google::Apis::SheetsV4::UpdateBandingRequest
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::UpdateBandingRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UpdateBandingRequest
Returns a new instance of UpdateBandingRequest
8646 8647 8648 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 8646 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
8637 8638 8639 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 8637 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
8644 8645 8646 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 8644 def fields @fields end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8651 8652 8653 8654 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 8651 def update!(**args) @banded_range = args[:banded_range] if args.key?(:banded_range) @fields = args[:fields] if args.key?(:fields) end |