class Google::Apis::DocsV1::BulletSuggestionState

A mask that indicates which of the fields on the base Bullet have been changed in this suggestion. For any field set to true, there is a new suggested value.

Attributes

list_id_suggested[RW]

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

list_id_suggested?[RW]

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

nesting_level_suggested[RW]

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

nesting_level_suggested?[RW]

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

text_style_suggestion_state[RW]

A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there is a new suggested value. Corresponds to the JSON property `textStyleSuggestionState` @return [Google::Apis::DocsV1::TextStyleSuggestionState]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/docs_v1/classes.rb, line 263
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 268
def update!(**args)
  @list_id_suggested = args[:list_id_suggested] if args.key?(:list_id_suggested)
  @nesting_level_suggested = args[:nesting_level_suggested] if args.key?(:nesting_level_suggested)
  @text_style_suggestion_state = args[:text_style_suggestion_state] if args.key?(:text_style_suggestion_state)
end