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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PositionedObjectPositioningSuggestionState

Returns a new instance of PositionedObjectPositioningSuggestionState.



3714
3715
3716
# File 'lib/google/apis/docs_v1/classes.rb', line 3714

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)


3699
3700
3701
# File 'lib/google/apis/docs_v1/classes.rb', line 3699

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)


3705
3706
3707
# File 'lib/google/apis/docs_v1/classes.rb', line 3705

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)


3711
3712
3713
# File 'lib/google/apis/docs_v1/classes.rb', line 3711

def top_offset_suggested
  @top_offset_suggested
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3719
3720
3721
3722
3723
# File 'lib/google/apis/docs_v1/classes.rb', line 3719

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