Class: Google::Apis::SlidesV1::DeleteTableColumnRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/slides_v1/classes.rb,
generated/google/apis/slides_v1/representations.rb,
generated/google/apis/slides_v1/representations.rb

Overview

Deletes a column from a table.

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) ⇒ DeleteTableColumnRequest

Returns a new instance of DeleteTableColumnRequest



1650
1651
1652
# File 'generated/google/apis/slides_v1/classes.rb', line 1650

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

Instance Attribute Details

#cell_locationGoogle::Apis::SlidesV1::TableCellLocation

A location of a single table cell within a table. Corresponds to the JSON property cellLocation



1648
1649
1650
# File 'generated/google/apis/slides_v1/classes.rb', line 1648

def cell_location
  @cell_location
end

#table_object_idString

The table to delete columns from. Corresponds to the JSON property tableObjectId

Returns:

  • (String)


1643
1644
1645
# File 'generated/google/apis/slides_v1/classes.rb', line 1643

def table_object_id
  @table_object_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1655
1656
1657
1658
# File 'generated/google/apis/slides_v1/classes.rb', line 1655

def update!(**args)
  @table_object_id = args[:table_object_id] if args.key?(:table_object_id)
  @cell_location = args[:cell_location] if args.key?(:cell_location)
end