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
Indicates if there was a suggested change to layout. Corresponds to the JSON property `layoutSuggested` @return [Boolean]
Indicates if there was a suggested change to layout. Corresponds to the JSON property `layoutSuggested` @return [Boolean]
Indicates if there was a suggested change to left_offset. Corresponds to the JSON property `leftOffsetSuggested` @return [Boolean]
Indicates if there was a suggested change to left_offset. Corresponds to the JSON property `leftOffsetSuggested` @return [Boolean]
Indicates if there was a suggested change to top_offset. Corresponds to the JSON property `topOffsetSuggested` @return [Boolean]
Indicates if there was a suggested change to top_offset. Corresponds to the JSON property `topOffsetSuggested` @return [Boolean]
Public Class Methods
# File lib/google/apis/docs_v1/classes.rb, line 3721 def initialize(**args) update!(**args) end
Public Instance Methods
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