Class: Google::Apis::DocsV1::CropPropertiesSuggestionState
- Inherits:
-
Object
- Object
- Google::Apis::DocsV1::CropPropertiesSuggestionState
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/docs_v1/classes.rb,
generated/google/apis/docs_v1/representations.rb,
generated/google/apis/docs_v1/representations.rb
Overview
A mask that indicates which of the fields on the base CropProperties have been changed in this suggestion. For any field set to true, there is a new suggested value.
Instance Attribute Summary collapse
-
#angle_suggested ⇒ Boolean
(also: #angle_suggested?)
Indicates if there was a suggested change to angle.
-
#offset_bottom_suggested ⇒ Boolean
(also: #offset_bottom_suggested?)
Indicates if there was a suggested change to offset_bottom.
-
#offset_left_suggested ⇒ Boolean
(also: #offset_left_suggested?)
Indicates if there was a suggested change to offset_left.
-
#offset_right_suggested ⇒ Boolean
(also: #offset_right_suggested?)
Indicates if there was a suggested change to offset_right.
-
#offset_top_suggested ⇒ Boolean
(also: #offset_top_suggested?)
Indicates if there was a suggested change to offset_top.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CropPropertiesSuggestionState
constructor
A new instance of CropPropertiesSuggestionState.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CropPropertiesSuggestionState
Returns a new instance of CropPropertiesSuggestionState
541 542 543 |
# File 'generated/google/apis/docs_v1/classes.rb', line 541 def initialize(**args) update!(**args) end |
Instance Attribute Details
#angle_suggested ⇒ Boolean Also known as: angle_suggested?
Indicates if there was a suggested change to angle.
Corresponds to the JSON property angleSuggested
514 515 516 |
# File 'generated/google/apis/docs_v1/classes.rb', line 514 def angle_suggested @angle_suggested end |
#offset_bottom_suggested ⇒ Boolean Also known as: offset_bottom_suggested?
Indicates if there was a suggested change to offset_bottom.
Corresponds to the JSON property offsetBottomSuggested
520 521 522 |
# File 'generated/google/apis/docs_v1/classes.rb', line 520 def offset_bottom_suggested @offset_bottom_suggested end |
#offset_left_suggested ⇒ Boolean Also known as: offset_left_suggested?
Indicates if there was a suggested change to offset_left.
Corresponds to the JSON property offsetLeftSuggested
526 527 528 |
# File 'generated/google/apis/docs_v1/classes.rb', line 526 def offset_left_suggested @offset_left_suggested end |
#offset_right_suggested ⇒ Boolean Also known as: offset_right_suggested?
Indicates if there was a suggested change to offset_right.
Corresponds to the JSON property offsetRightSuggested
532 533 534 |
# File 'generated/google/apis/docs_v1/classes.rb', line 532 def offset_right_suggested @offset_right_suggested end |
#offset_top_suggested ⇒ Boolean Also known as: offset_top_suggested?
Indicates if there was a suggested change to offset_top.
Corresponds to the JSON property offsetTopSuggested
538 539 540 |
# File 'generated/google/apis/docs_v1/classes.rb', line 538 def offset_top_suggested @offset_top_suggested end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
546 547 548 549 550 551 552 |
# File 'generated/google/apis/docs_v1/classes.rb', line 546 def update!(**args) @angle_suggested = args[:angle_suggested] if args.key?(:angle_suggested) @offset_bottom_suggested = args[:offset_bottom_suggested] if args.key?(:offset_bottom_suggested) @offset_left_suggested = args[:offset_left_suggested] if args.key?(:offset_left_suggested) @offset_right_suggested = args[:offset_right_suggested] if args.key?(:offset_right_suggested) @offset_top_suggested = args[:offset_top_suggested] if args.key?(:offset_top_suggested) end |