Class: Google::Apis::DocsV1::SuggestedInlineObjectProperties
- Inherits:
-
Object
- Object
- Google::Apis::DocsV1::SuggestedInlineObjectProperties
- 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 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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SuggestedInlineObjectProperties
Returns a new instance of SuggestedInlineObjectProperties
4138 4139 4140 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4138 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
4128 4129 4130 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4128 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 is a new
suggested value.
Corresponds to the JSON property inlineObjectPropertiesSuggestionState
4136 4137 4138 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4136 def inline_object_properties_suggestion_state @inline_object_properties_suggestion_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4143 4144 4145 4146 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4143 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 |