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
Indicates if there was a suggested change to angle. Corresponds to the JSON property `angleSuggested` @return [Boolean]
Indicates if there was a suggested change to angle. Corresponds to the JSON property `angleSuggested` @return [Boolean]
Indicates if there was a suggested change to offset_bottom. Corresponds to the JSON property `offsetBottomSuggested` @return [Boolean]
Indicates if there was a suggested change to offset_bottom. Corresponds to the JSON property `offsetBottomSuggested` @return [Boolean]
Indicates if there was a suggested change to offset_left. Corresponds to the JSON property `offsetLeftSuggested` @return [Boolean]
Indicates if there was a suggested change to offset_left. Corresponds to the JSON property `offsetLeftSuggested` @return [Boolean]
Indicates if there was a suggested change to offset_right. Corresponds to the JSON property `offsetRightSuggested` @return [Boolean]
Indicates if there was a suggested change to offset_right. Corresponds to the JSON property `offsetRightSuggested` @return [Boolean]
Indicates if there was a suggested change to offset_top. Corresponds to the JSON property `offsetTopSuggested` @return [Boolean]
Indicates if there was a suggested change to offset_top. Corresponds to the JSON property `offsetTopSuggested` @return [Boolean]
Public Class Methods
# File lib/google/apis/docs_v1/classes.rb, line 656 def initialize(**args) update!(**args) end
Public Instance Methods
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