Class: Google::Apis::DocsV1::SuggestedParagraphStyle
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DocsV1::SuggestedParagraphStyle
 
 
- 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 ParagraphStyle.
Instance Attribute Summary collapse
- 
  
    
      #paragraph_style  ⇒ Google::Apis::DocsV1::ParagraphStyle 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Styles that apply to a whole paragraph.
 - 
  
    
      #paragraph_style_suggestion_state  ⇒ Google::Apis::DocsV1::ParagraphStyleSuggestionState 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SuggestedParagraphStyle 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SuggestedParagraphStyle.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ SuggestedParagraphStyle
Returns a new instance of SuggestedParagraphStyle.
      5365 5366 5367  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5365 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#paragraph_style ⇒ Google::Apis::DocsV1::ParagraphStyle
Styles that apply to a whole paragraph. Inherited paragraph styles are
represented as unset fields in this message. A paragraph style's parent
depends on where the paragraph style is defined: * The ParagraphStyle on a
Paragraph inherits from the paragraph's corresponding named style type. * The
ParagraphStyle on a named style inherits from the normal text named style. *
The ParagraphStyle of the normal text named style inherits from the default
paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph
element that's contained in a table may inherit its paragraph style from the
table style. If the paragraph style does not inherit from a parent, unsetting
fields will revert the style to a value matching the defaults in the Docs
editor.
Corresponds to the JSON property paragraphStyle
      5356 5357 5358  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5356 def paragraph_style @paragraph_style end  | 
  
#paragraph_style_suggestion_state ⇒ Google::Apis::DocsV1::ParagraphStyleSuggestionState
A mask that indicates which of the fields on the base ParagraphStyle have been
changed in this suggestion. For any field set to true, there's a new suggested
value.
Corresponds to the JSON property paragraphStyleSuggestionState
      5363 5364 5365  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5363 def paragraph_style_suggestion_state @paragraph_style_suggestion_state end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5370 5371 5372 5373  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5370 def update!(**args) @paragraph_style = args[:paragraph_style] if args.key?(:paragraph_style) @paragraph_style_suggestion_state = args[:paragraph_style_suggestion_state] if args.key?(:paragraph_style_suggestion_state) end  |