Class: Google::Apis::DocsV1::SuggestedInlineObjectProperties
- Inherits:
-
Object
- Object
- Google::Apis::DocsV1::SuggestedInlineObjectProperties
- 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 suggested change to InlineObjectProperties.
Instance Attribute Summary collapse
-
#inline_object_properties ⇒ Google::Apis::DocsV1::InlineObjectProperties
Properties of an InlineObject.
-
#inline_object_properties_suggestion_state ⇒ Google::Apis::DocsV1::InlineObjectPropertiesSuggestionState
A mask that indicates which of the fields on the base InlineObjectProperties have been changed in this suggestion.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SuggestedInlineObjectProperties
constructor
A new instance of SuggestedInlineObjectProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SuggestedInlineObjectProperties
Returns a new instance of SuggestedInlineObjectProperties.
5284 5285 5286 |
# File 'lib/google/apis/docs_v1/classes.rb', line 5284 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inline_object_properties ⇒ Google::Apis::DocsV1::InlineObjectProperties
Properties of an InlineObject.
Corresponds to the JSON property inlineObjectProperties
5275 5276 5277 |
# File 'lib/google/apis/docs_v1/classes.rb', line 5275 def inline_object_properties @inline_object_properties end |
#inline_object_properties_suggestion_state ⇒ Google::Apis::DocsV1::InlineObjectPropertiesSuggestionState
A mask that indicates which of the fields on the base InlineObjectProperties
have been changed in this suggestion. For any field set to true, there's a new
suggested value.
Corresponds to the JSON property inlineObjectPropertiesSuggestionState
5282 5283 5284 |
# File 'lib/google/apis/docs_v1/classes.rb', line 5282 def inline_object_properties_suggestion_state @inline_object_properties_suggestion_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5289 5290 5291 5292 |
# File 'lib/google/apis/docs_v1/classes.rb', line 5289 def update!(**args) @inline_object_properties = args[:inline_object_properties] if args.key?(:inline_object_properties) @inline_object_properties_suggestion_state = args[:inline_object_properties_suggestion_state] if args.key?(:inline_object_properties_suggestion_state) end |