class Google::Apis::DocsV1::CropPropertiesSuggestionState

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.

Attributes

angle_suggested[RW]

Indicates if there was a suggested change to angle. Corresponds to the JSON property `angleSuggested` @return [Boolean]

angle_suggested?[RW]

Indicates if there was a suggested change to angle. Corresponds to the JSON property `angleSuggested` @return [Boolean]

offset_bottom_suggested[RW]

Indicates if there was a suggested change to offset_bottom. Corresponds to the JSON property `offsetBottomSuggested` @return [Boolean]

offset_bottom_suggested?[RW]

Indicates if there was a suggested change to offset_bottom. Corresponds to the JSON property `offsetBottomSuggested` @return [Boolean]

offset_left_suggested[RW]

Indicates if there was a suggested change to offset_left. Corresponds to the JSON property `offsetLeftSuggested` @return [Boolean]

offset_left_suggested?[RW]

Indicates if there was a suggested change to offset_left. Corresponds to the JSON property `offsetLeftSuggested` @return [Boolean]

offset_right_suggested[RW]

Indicates if there was a suggested change to offset_right. Corresponds to the JSON property `offsetRightSuggested` @return [Boolean]

offset_right_suggested?[RW]

Indicates if there was a suggested change to offset_right. Corresponds to the JSON property `offsetRightSuggested` @return [Boolean]

offset_top_suggested[RW]

Indicates if there was a suggested change to offset_top. Corresponds to the JSON property `offsetTopSuggested` @return [Boolean]

offset_top_suggested?[RW]

Indicates if there was a suggested change to offset_top. Corresponds to the JSON property `offsetTopSuggested` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/docs_v1/classes.rb, line 656
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/docs_v1/classes.rb, line 661
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