class Google::Apis::SheetsV4::UpdateBandingRequest
Updates properties of the supplied banded range.
Attributes
banded_range[RW]
A banded (alternating colors) range in a sheet. Corresponds to the JSON property `bandedRange` @return [Google::Apis::SheetsV4::BandedRange]
fields[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 10224 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# 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