Class: Google::Apis::SheetsV4::DeveloperMetadataLocation
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::DeveloperMetadataLocation
- 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
A location where metadata may be associated in a spreadsheet.
Instance Attribute Summary collapse
-
#dimension_range ⇒ Google::Apis::SheetsV4::DimensionRange
A range along a single dimension on a sheet.
-
#location_type ⇒ String
The type of location this object represents.
-
#sheet_id ⇒ Fixnum
The ID of the sheet when metadata is associated with an entire sheet.
-
#spreadsheet ⇒ Boolean
(also: #spreadsheet?)
True when metadata is associated with an entire spreadsheet.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeveloperMetadataLocation
constructor
A new instance of DeveloperMetadataLocation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DeveloperMetadataLocation
Returns a new instance of DeveloperMetadataLocation
3783 3784 3785 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 3783 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension_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 dimensionRange
3765 3766 3767 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 3765 def dimension_range @dimension_range end |
#location_type ⇒ String
The type of location this object represents. This field is read-only.
Corresponds to the JSON property locationType
3770 3771 3772 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 3770 def location_type @location_type end |
#sheet_id ⇒ Fixnum
The ID of the sheet when metadata is associated with an entire sheet.
Corresponds to the JSON property sheetId
3775 3776 3777 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 3775 def sheet_id @sheet_id end |
#spreadsheet ⇒ Boolean Also known as: spreadsheet?
True when metadata is associated with an entire spreadsheet.
Corresponds to the JSON property spreadsheet
3780 3781 3782 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 3780 def spreadsheet @spreadsheet end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3788 3789 3790 3791 3792 3793 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 3788 def update!(**args) @dimension_range = args[:dimension_range] if args.key?(:dimension_range) @location_type = args[:location_type] if args.key?(:location_type) @sheet_id = args[:sheet_id] if args.key?(:sheet_id) @spreadsheet = args[:spreadsheet] if args.key?(:spreadsheet) end |