class Google::Apis::SheetsV4::UpdateBordersRequest

set the style to NONE.
RED, bottom: WHITE, left: BLUE “. If you want to clear a border, explicitly
A1:A5 “ left: BLUE “ That would result in A1:A5 having a borders of “ top:
UpdateBordersRequest: 1. range: A1:A5 “ top: RED, bottom: WHITE “ 2. range:
means the border remains as-is. For example, with two subsequent
Updates the borders of a range. If a field is not set in the request, that

def initialize(**args)

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

def update!(**args)

Update properties of this object
def update!(**args)
  @bottom = args[:bottom] if args.key?(:bottom)
  @inner_horizontal = args[:inner_horizontal] if args.key?(:inner_horizontal)
  @inner_vertical = args[:inner_vertical] if args.key?(:inner_vertical)
  @left = args[:left] if args.key?(:left)
  @range = args[:range] if args.key?(:range)
  @right = args[:right] if args.key?(:right)
  @top = args[:top] if args.key?(:top)
end