class Google::Apis::SheetsV4::DimensionRange

exclusive. Missing indexes indicate the range is unbounded on that side.
Indexes are half open: the start index is inclusive and the end index is
A range along a single dimension on a sheet. All indexes are zero-based.

def initialize(**args)

def initialize(**args)
   update!(**args)
end

def update!(**args)

Update properties of this object
def update!(**args)
  @dimension = args[:dimension] if args.key?(:dimension)
  @end_index = args[:end_index] if args.key?(:end_index)
  @sheet_id = args[:sheet_id] if args.key?(:sheet_id)
  @start_index = args[:start_index] if args.key?(:start_index)
end