Class: Google::Apis::DocsV1::SuggestedDocumentStyle
- Inherits:
-
Object
- Object
- Google::Apis::DocsV1::SuggestedDocumentStyle
- 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 the DocumentStyle.
Instance Attribute Summary collapse
-
#document_style ⇒ Google::Apis::DocsV1::DocumentStyle
The style of the document.
-
#document_style_suggestion_state ⇒ Google::Apis::DocsV1::DocumentStyleSuggestionState
A mask that indicates which of the fields on the base DocumentStyle have been changed in this suggestion.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SuggestedDocumentStyle
constructor
A new instance of SuggestedDocumentStyle.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SuggestedDocumentStyle
Returns a new instance of SuggestedDocumentStyle
4110 4111 4112 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4110 def initialize(**args) update!(**args) end |
Instance Attribute Details
#document_style ⇒ Google::Apis::DocsV1::DocumentStyle
The style of the document.
Corresponds to the JSON property documentStyle
4101 4102 4103 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4101 def document_style @document_style end |
#document_style_suggestion_state ⇒ Google::Apis::DocsV1::DocumentStyleSuggestionState
A mask that indicates which of the fields on the base DocumentStyle have been
changed in this suggestion.
For any field set to true, there is a new suggested value.
Corresponds to the JSON property documentStyleSuggestionState
4108 4109 4110 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4108 def document_style_suggestion_state @document_style_suggestion_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4115 4116 4117 4118 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4115 def update!(**args) @document_style = args[:document_style] if args.key?(:document_style) @document_style_suggestion_state = args[:document_style_suggestion_state] if args.key?(:document_style_suggestion_state) end |