class Google::Apis::DocsV1::EmbeddedObjectBorderSuggestionState
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 is a new suggested value.
Attributes
Indicates if there was a suggested change to color. Corresponds to the JSON property `colorSuggested` @return [Boolean]
Indicates if there was a suggested change to color. Corresponds to the JSON property `colorSuggested` @return [Boolean]
Indicates if there was a suggested change to dash_style. Corresponds to the JSON property `dashStyleSuggested` @return [Boolean]
Indicates if there was a suggested change to dash_style. Corresponds to the JSON property `dashStyleSuggested` @return [Boolean]
Indicates if there was a suggested change to property_state. Corresponds to the JSON property `propertyStateSuggested` @return [Boolean]
Indicates if there was a suggested change to property_state. Corresponds to the JSON property `propertyStateSuggested` @return [Boolean]
Indicates if there was a suggested change to width. Corresponds to the JSON property `widthSuggested` @return [Boolean]
Indicates if there was a suggested change to width. Corresponds to the JSON property `widthSuggested` @return [Boolean]
Public Class Methods
# File lib/google/apis/docs_v1/classes.rb, line 1451 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/docs_v1/classes.rb, line 1456 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