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.



4007
4008
4009
# File 'lib/google/apis/docs_v1/classes.rb', line 4007

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)


3992
3993
3994
# File 'lib/google/apis/docs_v1/classes.rb', line 3992

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)


3998
3999
4000
# File 'lib/google/apis/docs_v1/classes.rb', line 3998

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)


4004
4005
4006
# File 'lib/google/apis/docs_v1/classes.rb', line 4004

def top_offset_suggested
  @top_offset_suggested
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4012
4013
4014
4015
4016
# File 'lib/google/apis/docs_v1/classes.rb', line 4012

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