class Google::Apis::SheetsV4::DeveloperMetadataLocation
A location where metadata may be associated in a spreadsheet.
Attributes
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` @return [Google::Apis::SheetsV4::DimensionRange]
The type of location this object represents. This field is read-only. Corresponds to the JSON property `locationType` @return [String]
The ID of the sheet when metadata is associated with an entire sheet. Corresponds to the JSON property `sheetId` @return [Fixnum]
True when metadata is associated with an entire spreadsheet. Corresponds to the JSON property `spreadsheet` @return [Boolean]
True when metadata is associated with an entire spreadsheet. Corresponds to the JSON property `spreadsheet` @return [Boolean]
Public Class Methods
# File lib/google/apis/sheets_v4/classes.rb, line 4850 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/sheets_v4/classes.rb, line 4855 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