class Google::Apis::DocsV1::NestingLevelSuggestionState

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

Attributes

bullet_alignment_suggested[RW]

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

bullet_alignment_suggested?[RW]

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

glyph_format_suggested[RW]

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

glyph_format_suggested?[RW]

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

glyph_symbol_suggested[RW]

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

glyph_symbol_suggested?[RW]

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

glyph_type_suggested[RW]

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

glyph_type_suggested?[RW]

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

indent_first_line_suggested[RW]

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

indent_first_line_suggested?[RW]

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

indent_start_suggested[RW]

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

indent_start_suggested?[RW]

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

start_number_suggested[RW]

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

start_number_suggested?[RW]

Indicates if there was a suggested change to start_number. Corresponds to the JSON property `startNumberSuggested` @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 2908
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 2913
def update!(**args)
  @bullet_alignment_suggested = args[:bullet_alignment_suggested] if args.key?(:bullet_alignment_suggested)
  @glyph_format_suggested = args[:glyph_format_suggested] if args.key?(:glyph_format_suggested)
  @glyph_symbol_suggested = args[:glyph_symbol_suggested] if args.key?(:glyph_symbol_suggested)
  @glyph_type_suggested = args[:glyph_type_suggested] if args.key?(:glyph_type_suggested)
  @indent_first_line_suggested = args[:indent_first_line_suggested] if args.key?(:indent_first_line_suggested)
  @indent_start_suggested = args[:indent_start_suggested] if args.key?(:indent_start_suggested)
  @start_number_suggested = args[:start_number_suggested] if args.key?(:start_number_suggested)
  @text_style_suggestion_state = args[:text_style_suggestion_state] if args.key?(:text_style_suggestion_state)
end