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.



4055
4056
4057
# File 'lib/google/apis/docs_v1/classes.rb', line 4055

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)


4040
4041
4042
# File 'lib/google/apis/docs_v1/classes.rb', line 4040

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)


4046
4047
4048
# File 'lib/google/apis/docs_v1/classes.rb', line 4046

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)


4052
4053
4054
# File 'lib/google/apis/docs_v1/classes.rb', line 4052

def top_offset_suggested
  @top_offset_suggested
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4060
4061
4062
4063
4064
# File 'lib/google/apis/docs_v1/classes.rb', line 4060

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