class Google::Apis::DocsV1::PositionedObjectPositioningSuggestionState

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

Attributes

layout_suggested[RW]

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

layout_suggested?[RW]

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

left_offset_suggested[RW]

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

left_offset_suggested?[RW]

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

top_offset_suggested[RW]

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

top_offset_suggested?[RW]

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

Public Class Methods

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