Class: Google::Apis::DocsV1::SuggestedTableRowStyle
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DocsV1::SuggestedTableRowStyle
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/docs_v1/classes.rb,
lib/google/apis/docs_v1/representations.rb,
lib/google/apis/docs_v1/representations.rb 
Overview
A suggested change to a TableRowStyle.
Instance Attribute Summary collapse
- 
  
    
      #table_row_style  ⇒ Google::Apis::DocsV1::TableRowStyle 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Styles that apply to a table row.
 - 
  
    
      #table_row_style_suggestion_state  ⇒ Google::Apis::DocsV1::TableRowStyleSuggestionState 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SuggestedTableRowStyle 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SuggestedTableRowStyle.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ SuggestedTableRowStyle
Returns a new instance of SuggestedTableRowStyle.
      5447 5448 5449  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5447 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#table_row_style ⇒ Google::Apis::DocsV1::TableRowStyle
Styles that apply to a table row.
Corresponds to the JSON property tableRowStyle
      5438 5439 5440  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5438 def table_row_style @table_row_style end  | 
  
#table_row_style_suggestion_state ⇒ Google::Apis::DocsV1::TableRowStyleSuggestionState
A mask that indicates which of the fields on the base TableRowStyle have been
changed in this suggestion. For any field set to true, there's a new suggested
value.
Corresponds to the JSON property tableRowStyleSuggestionState
      5445 5446 5447  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5445 def table_row_style_suggestion_state @table_row_style_suggestion_state end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5452 5453 5454 5455  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5452 def update!(**args) @table_row_style = args[:table_row_style] if args.key?(:table_row_style) @table_row_style_suggestion_state = args[:table_row_style_suggestion_state] if args.key?(:table_row_style_suggestion_state) end  |