class Google::Apis::SlidesV1::UpdateTableRowPropertiesRequest
Updates the properties of a Table
row.
Attributes
The fields that should be updated. At least one field must be specified. The root `tableRowProperties` is implied and should not be specified. A single `“*” ` can be used as short-hand for listing every field. For example to update the minimum row height, set `fields` to `“min_row_height”`. If '“min_row_height”' is included in the field mask but the property is left unset, the minimum row height will default to 0. Corresponds to the JSON property `fields` @return [String]
The object ID of the table. Corresponds to the JSON property `objectId` @return [String]
The list of zero-based indices specifying which rows to update. If no indices are provided, all rows in the table will be updated. Corresponds to the JSON property `rowIndices` @return [Array<Fixnum>]
Properties of each row in a table. Corresponds to the JSON property `tableRowProperties` @return [Google::Apis::SlidesV1::TableRowProperties]
Public Class Methods
# File lib/google/apis/slides_v1/classes.rb, line 4978 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/slides_v1/classes.rb, line 4983 def update!(**args) @fields = args[:fields] if args.key?(:fields) @object_id_prop = args[:object_id_prop] if args.key?(:object_id_prop) @row_indices = args[:row_indices] if args.key?(:row_indices) @table_row_properties = args[:table_row_properties] if args.key?(:table_row_properties) end