Class: Google::Apis::DocsV1::PositionedObjectPositioningSuggestionState

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/docs_v1/classes.rb,
lib/google/apis/docs_v1/representations.rb,
lib/google/apis/docs_v1/representations.rb

Overview

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's a new suggested value.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PositionedObjectPositioningSuggestionState

Returns a new instance of PositionedObjectPositioningSuggestionState.



3767
3768
3769
# File 'lib/google/apis/docs_v1/classes.rb', line 3767

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#layout_suggestedBoolean Also known as: layout_suggested?

Indicates if there was a suggested change to layout. Corresponds to the JSON property layoutSuggested

Returns:

  • (Boolean)


3752
3753
3754
# File 'lib/google/apis/docs_v1/classes.rb', line 3752

def layout_suggested
  @layout_suggested
end

#left_offset_suggestedBoolean Also known as: left_offset_suggested?

Indicates if there was a suggested change to left_offset. Corresponds to the JSON property leftOffsetSuggested

Returns:

  • (Boolean)


3758
3759
3760
# File 'lib/google/apis/docs_v1/classes.rb', line 3758

def left_offset_suggested
  @left_offset_suggested
end

#top_offset_suggestedBoolean Also known as: top_offset_suggested?

Indicates if there was a suggested change to top_offset. Corresponds to the JSON property topOffsetSuggested

Returns:

  • (Boolean)


3764
3765
3766
# File 'lib/google/apis/docs_v1/classes.rb', line 3764

def top_offset_suggested
  @top_offset_suggested
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3772
3773
3774
3775
3776
# File 'lib/google/apis/docs_v1/classes.rb', line 3772

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