Class: Google::Apis::SheetsV4::UpdateDimensionPropertiesRequest
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::UpdateDimensionPropertiesRequest
- 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 dimensions within the specified range.
Instance Attribute Summary collapse
-
#fields ⇒ String
The fields that should be updated.
-
#properties ⇒ Google::Apis::SheetsV4::DimensionProperties
Properties about a dimension.
-
#range ⇒ Google::Apis::SheetsV4::DimensionRange
A range along a single dimension on a sheet.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateDimensionPropertiesRequest
constructor
A new instance of UpdateDimensionPropertiesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UpdateDimensionPropertiesRequest
Returns a new instance of UpdateDimensionPropertiesRequest
3848 3849 3850 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 3848 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fields ⇒ String
The fields that should be updated. At least one field must be specified.
The root properties 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
3841 3842 3843 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 3841 def fields @fields end |
#properties ⇒ Google::Apis::SheetsV4::DimensionProperties
Properties about a dimension.
Corresponds to the JSON property properties
3846 3847 3848 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 3846 def properties @properties end |
#range ⇒ Google::Apis::SheetsV4::DimensionRange
A range along a single dimension on a sheet.
All indexes are zero-based.
Indexes are half open: the start index is inclusive
and the end index is exclusive.
Missing indexes indicate the range is unbounded on that side.
Corresponds to the JSON property range
3834 3835 3836 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 3834 def range @range end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3853 3854 3855 3856 3857 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 3853 def update!(**args) @range = args[:range] if args.key?(:range) @fields = args[:fields] if args.key?(:fields) @properties = args[:properties] if args.key?(:properties) end |