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

color_suggested[RW]

Indicates if there was a suggested change to color. Corresponds to the JSON property `colorSuggested` @return [Boolean]

color_suggested?[RW]

Indicates if there was a suggested change to color. Corresponds to the JSON property `colorSuggested` @return [Boolean]

dash_style_suggested[RW]

Indicates if there was a suggested change to dash_style. Corresponds to the JSON property `dashStyleSuggested` @return [Boolean]

dash_style_suggested?[RW]

Indicates if there was a suggested change to dash_style. Corresponds to the JSON property `dashStyleSuggested` @return [Boolean]

property_state_suggested[RW]

Indicates if there was a suggested change to property_state. Corresponds to the JSON property `propertyStateSuggested` @return [Boolean]

property_state_suggested?[RW]

Indicates if there was a suggested change to property_state. Corresponds to the JSON property `propertyStateSuggested` @return [Boolean]

width_suggested[RW]

Indicates if there was a suggested change to width. Corresponds to the JSON property `widthSuggested` @return [Boolean]

width_suggested?[RW]

Indicates if there was a suggested change to width. Corresponds to the JSON property `widthSuggested` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/docs_v1/classes.rb, line 1451
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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