Class: Google::Apis::DocsV1::EmbeddedObjectBorderSuggestionState
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DocsV1::EmbeddedObjectBorderSuggestionState
 
 
- 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 mask that indicates which of the fields on the base EmbeddedObjectBorder have been changed in this suggestion. For any field set to true, there's a new suggested value.
Instance Attribute Summary collapse
- 
  
    
      #color_suggested  ⇒ Boolean 
    
    
      (also: #color_suggested?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates if there was a suggested change to color.
 - 
  
    
      #dash_style_suggested  ⇒ Boolean 
    
    
      (also: #dash_style_suggested?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates if there was a suggested change to dash_style.
 - 
  
    
      #property_state_suggested  ⇒ Boolean 
    
    
      (also: #property_state_suggested?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates if there was a suggested change to property_state.
 - 
  
    
      #width_suggested  ⇒ Boolean 
    
    
      (also: #width_suggested?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates if there was a suggested change to width.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ EmbeddedObjectBorderSuggestionState 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of EmbeddedObjectBorderSuggestionState.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ EmbeddedObjectBorderSuggestionState
Returns a new instance of EmbeddedObjectBorderSuggestionState.
      1663 1664 1665  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 1663 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#color_suggested ⇒ Boolean Also known as: color_suggested?
Indicates if there was a suggested change to color.
Corresponds to the JSON property colorSuggested
      1642 1643 1644  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 1642 def color_suggested @color_suggested end  | 
  
#dash_style_suggested ⇒ Boolean Also known as: dash_style_suggested?
Indicates if there was a suggested change to dash_style.
Corresponds to the JSON property dashStyleSuggested
      1648 1649 1650  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 1648 def dash_style_suggested @dash_style_suggested end  | 
  
#property_state_suggested ⇒ Boolean Also known as: property_state_suggested?
Indicates if there was a suggested change to property_state.
Corresponds to the JSON property propertyStateSuggested
      1654 1655 1656  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 1654 def property_state_suggested @property_state_suggested end  | 
  
#width_suggested ⇒ Boolean Also known as: width_suggested?
Indicates if there was a suggested change to width.
Corresponds to the JSON property widthSuggested
      1660 1661 1662  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 1660 def width_suggested @width_suggested end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1668 1669 1670 1671 1672 1673  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 1668 def update!(**args) @color_suggested = args[:color_suggested] if args.key?(:color_suggested) @dash_style_suggested = args[:dash_style_suggested] if args.key?(:dash_style_suggested) @property_state_suggested = args[:property_state_suggested] if args.key?(:property_state_suggested) @width_suggested = args[:width_suggested] if args.key?(:width_suggested) end  |