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.
Constructor Details
#initialize(**args) ⇒ DeveloperMetadataLocation
Returns a new instance of DeveloperMetadataLocation.
4848 4849 4850 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4848 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
4830 4831 4832 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4830 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
4835 4836 4837 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4835 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
4840 4841 4842 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4840 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
4845 4846 4847 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4845 def spreadsheet @spreadsheet end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4853 4854 4855 4856 4857 4858 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4853 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 |