Class: Google::Apis::SlidesV1::UpdateTableRowPropertiesRequest
- Inherits:
-
Object
- Object
- Google::Apis::SlidesV1::UpdateTableRowPropertiesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/slides_v1/classes.rb,
lib/google/apis/slides_v1/representations.rb,
lib/google/apis/slides_v1/representations.rb
Overview
Updates the properties of a Table row.
Instance Attribute Summary collapse
-
#fields ⇒ String
The fields that should be updated.
-
#object_id_prop ⇒ String
The object ID of the table.
-
#row_indices ⇒ Array<Fixnum>
The list of zero-based indices specifying which rows to update.
-
#table_row_properties ⇒ Google::Apis::SlidesV1::TableRowProperties
Properties of each row in a table.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateTableRowPropertiesRequest
constructor
A new instance of UpdateTableRowPropertiesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UpdateTableRowPropertiesRequest
Returns a new instance of UpdateTableRowPropertiesRequest.
5038 5039 5040 |
# File 'lib/google/apis/slides_v1/classes.rb', line 5038 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fields ⇒ String
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
5020 5021 5022 |
# File 'lib/google/apis/slides_v1/classes.rb', line 5020 def fields @fields end |
#object_id_prop ⇒ String
The object ID of the table.
Corresponds to the JSON property objectId
5025 5026 5027 |
# File 'lib/google/apis/slides_v1/classes.rb', line 5025 def object_id_prop @object_id_prop end |
#row_indices ⇒ Array<Fixnum>
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
5031 5032 5033 |
# File 'lib/google/apis/slides_v1/classes.rb', line 5031 def row_indices @row_indices end |
#table_row_properties ⇒ Google::Apis::SlidesV1::TableRowProperties
Properties of each row in a table.
Corresponds to the JSON property tableRowProperties
5036 5037 5038 |
# File 'lib/google/apis/slides_v1/classes.rb', line 5036 def table_row_properties @table_row_properties end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5043 5044 5045 5046 5047 5048 |
# File 'lib/google/apis/slides_v1/classes.rb', line 5043 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 |