class Google::Apis::DocsV1::TableCellStyleSuggestionState

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

Attributes

background_color_suggested[RW]

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

background_color_suggested?[RW]

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

border_bottom_suggested[RW]

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

border_bottom_suggested?[RW]

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

border_left_suggested[RW]

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

border_left_suggested?[RW]

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

border_right_suggested[RW]

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

border_right_suggested?[RW]

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

border_top_suggested[RW]

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

border_top_suggested?[RW]

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

column_span_suggested[RW]

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

column_span_suggested?[RW]

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

content_alignment_suggested[RW]

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

content_alignment_suggested?[RW]

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

padding_bottom_suggested[RW]

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

padding_bottom_suggested?[RW]

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

padding_left_suggested[RW]

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

padding_left_suggested?[RW]

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

padding_right_suggested[RW]

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

padding_right_suggested?[RW]

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

padding_top_suggested[RW]

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

padding_top_suggested?[RW]

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

row_span_suggested[RW]

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

row_span_suggested?[RW]

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

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/docs_v1/classes.rb, line 5476
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 5481
def update!(**args)
  @background_color_suggested = args[:background_color_suggested] if args.key?(:background_color_suggested)
  @border_bottom_suggested = args[:border_bottom_suggested] if args.key?(:border_bottom_suggested)
  @border_left_suggested = args[:border_left_suggested] if args.key?(:border_left_suggested)
  @border_right_suggested = args[:border_right_suggested] if args.key?(:border_right_suggested)
  @border_top_suggested = args[:border_top_suggested] if args.key?(:border_top_suggested)
  @column_span_suggested = args[:column_span_suggested] if args.key?(:column_span_suggested)
  @content_alignment_suggested = args[:content_alignment_suggested] if args.key?(:content_alignment_suggested)
  @padding_bottom_suggested = args[:padding_bottom_suggested] if args.key?(:padding_bottom_suggested)
  @padding_left_suggested = args[:padding_left_suggested] if args.key?(:padding_left_suggested)
  @padding_right_suggested = args[:padding_right_suggested] if args.key?(:padding_right_suggested)
  @padding_top_suggested = args[:padding_top_suggested] if args.key?(:padding_top_suggested)
  @row_span_suggested = args[:row_span_suggested] if args.key?(:row_span_suggested)
end