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
Indicates if there was a suggested change to background_color. Corresponds to the JSON property `backgroundColorSuggested` @return [Boolean]
Indicates if there was a suggested change to background_color. Corresponds to the JSON property `backgroundColorSuggested` @return [Boolean]
Indicates if there was a suggested change to border_bottom. Corresponds to the JSON property `borderBottomSuggested` @return [Boolean]
Indicates if there was a suggested change to border_bottom. Corresponds to the JSON property `borderBottomSuggested` @return [Boolean]
Indicates if there was a suggested change to border_left. Corresponds to the JSON property `borderLeftSuggested` @return [Boolean]
Indicates if there was a suggested change to border_left. Corresponds to the JSON property `borderLeftSuggested` @return [Boolean]
Indicates if there was a suggested change to border_right. Corresponds to the JSON property `borderRightSuggested` @return [Boolean]
Indicates if there was a suggested change to border_right. Corresponds to the JSON property `borderRightSuggested` @return [Boolean]
Indicates if there was a suggested change to border_top. Corresponds to the JSON property `borderTopSuggested` @return [Boolean]
Indicates if there was a suggested change to border_top. Corresponds to the JSON property `borderTopSuggested` @return [Boolean]
Indicates if there was a suggested change to column_span. Corresponds to the JSON property `columnSpanSuggested` @return [Boolean]
Indicates if there was a suggested change to column_span. Corresponds to the JSON property `columnSpanSuggested` @return [Boolean]
Indicates if there was a suggested change to content_alignment. Corresponds to the JSON property `contentAlignmentSuggested` @return [Boolean]
Indicates if there was a suggested change to content_alignment. Corresponds to the JSON property `contentAlignmentSuggested` @return [Boolean]
Indicates if there was a suggested change to padding_bottom. Corresponds to the JSON property `paddingBottomSuggested` @return [Boolean]
Indicates if there was a suggested change to padding_bottom. Corresponds to the JSON property `paddingBottomSuggested` @return [Boolean]
Indicates if there was a suggested change to padding_left. Corresponds to the JSON property `paddingLeftSuggested` @return [Boolean]
Indicates if there was a suggested change to padding_left. Corresponds to the JSON property `paddingLeftSuggested` @return [Boolean]
Indicates if there was a suggested change to padding_right. Corresponds to the JSON property `paddingRightSuggested` @return [Boolean]
Indicates if there was a suggested change to padding_right. Corresponds to the JSON property `paddingRightSuggested` @return [Boolean]
Indicates if there was a suggested change to padding_top. Corresponds to the JSON property `paddingTopSuggested` @return [Boolean]
Indicates if there was a suggested change to padding_top. Corresponds to the JSON property `paddingTopSuggested` @return [Boolean]
Indicates if there was a suggested change to row_span. Corresponds to the JSON property `rowSpanSuggested` @return [Boolean]
Indicates if there was a suggested change to row_span. Corresponds to the JSON property `rowSpanSuggested` @return [Boolean]
Public Class Methods
# File lib/google/apis/docs_v1/classes.rb, line 5476 def initialize(**args) update!(**args) end
Public Instance Methods
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