class Google::Apis::SheetsV4::SortSpec

A sort order associated with a specific column or row.

def initialize(**args)

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

def update!(**args)

Update properties of this object
def update!(**args)
  @background_color = args[:background_color] if args.key?(:background_color)
  @background_color_style = args[:background_color_style] if args.key?(:background_color_style)
  @data_source_column_reference = args[:data_source_column_reference] if args.key?(:data_source_column_reference)
  @dimension_index = args[:dimension_index] if args.key?(:dimension_index)
  @foreground_color = args[:foreground_color] if args.key?(:foreground_color)
  @foreground_color_style = args[:foreground_color_style] if args.key?(:foreground_color_style)
  @sort_order = args[:sort_order] if args.key?(:sort_order)
end