Class: Google::Apis::DocsV1::SuggestedTableCellStyle
- Inherits:
-
Object
- Object
- Google::Apis::DocsV1::SuggestedTableCellStyle
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/docs_v1/classes.rb,
generated/google/apis/docs_v1/representations.rb,
generated/google/apis/docs_v1/representations.rb
Overview
A suggested change to a TableCellStyle.
Instance Attribute Summary collapse
-
#table_cell_style ⇒ Google::Apis::DocsV1::TableCellStyle
The style of a TableCell.
-
#table_cell_style_suggestion_state ⇒ Google::Apis::DocsV1::TableCellStyleSuggestionState
A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SuggestedTableCellStyle
constructor
A new instance of SuggestedTableCellStyle.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SuggestedTableCellStyle
Returns a new instance of SuggestedTableCellStyle
4693 4694 4695 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4693 def initialize(**args) update!(**args) end |
Instance Attribute Details
#table_cell_style ⇒ Google::Apis::DocsV1::TableCellStyle
The style of a TableCell.
Inherited table cell styles are represented as unset fields in this message.
A table cell style can inherit from the table's style.
Corresponds to the JSON property tableCellStyle
4684 4685 4686 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4684 def table_cell_style @table_cell_style end |
#table_cell_style_suggestion_state ⇒ Google::Apis::DocsV1::TableCellStyleSuggestionState
A mask that indicates which of the fields on the base TableCellStyle have been
changed in this suggestion.
For any field set to true, there is a new suggested value.
Corresponds to the JSON property tableCellStyleSuggestionState
4691 4692 4693 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4691 def table_cell_style_suggestion_state @table_cell_style_suggestion_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4698 4699 4700 4701 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4698 def update!(**args) @table_cell_style = args[:table_cell_style] if args.key?(:table_cell_style) @table_cell_style_suggestion_state = args[:table_cell_style_suggestion_state] if args.key?(:table_cell_style_suggestion_state) end |