Class: Google::Apis::SheetsV4::Slicer

Inherits:
Object
  • Object
show all
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 slicer in a sheet.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Slicer

Returns a new instance of Slicer.



8956
8957
8958
# File 'generated/google/apis/sheets_v4/classes.rb', line 8956

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

Instance Attribute Details

#positionGoogle::Apis::SheetsV4::EmbeddedObjectPosition

The position of an embedded object such as a chart. Corresponds to the JSON property position



8944
8945
8946
# File 'generated/google/apis/sheets_v4/classes.rb', line 8944

def position
  @position
end

#slicer_idFixnum

The ID of the slicer. Corresponds to the JSON property slicerId

Returns:

  • (Fixnum)


8949
8950
8951
# File 'generated/google/apis/sheets_v4/classes.rb', line 8949

def slicer_id
  @slicer_id
end

#specGoogle::Apis::SheetsV4::SlicerSpec

The specifications of a slicer. Corresponds to the JSON property spec



8954
8955
8956
# File 'generated/google/apis/sheets_v4/classes.rb', line 8954

def spec
  @spec
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8961
8962
8963
8964
8965
# File 'generated/google/apis/sheets_v4/classes.rb', line 8961

def update!(**args)
  @position = args[:position] if args.key?(:position)
  @slicer_id = args[:slicer_id] if args.key?(:slicer_id)
  @spec = args[:spec] if args.key?(:spec)
end