Class: Google::Apis::DocsV1::Equation
- Inherits:
-
Object
- Object
- Google::Apis::DocsV1::Equation
- 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 ParagraphElement representing an equation.
Instance Attribute Summary collapse
-
#suggested_deletion_ids ⇒ Array<String>
The suggested deletion IDs.
-
#suggested_insertion_ids ⇒ Array<String>
The suggested insertion IDs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Equation
constructor
A new instance of Equation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Equation
Returns a new instance of Equation.
1821 1822 1823 |
# File 'lib/google/apis/docs_v1/classes.rb', line 1821 def initialize(**args) update!(**args) end |
Instance Attribute Details
#suggested_deletion_ids ⇒ Array<String>
The suggested deletion IDs. If empty, then there are no suggested deletions of
this content.
Corresponds to the JSON property suggestedDeletionIds
1813 1814 1815 |
# File 'lib/google/apis/docs_v1/classes.rb', line 1813 def suggested_deletion_ids @suggested_deletion_ids end |
#suggested_insertion_ids ⇒ Array<String>
The suggested insertion IDs. An Equation may have multiple insertion IDs if it'
s a nested suggested change. If empty, then this is not a suggested insertion.
Corresponds to the JSON property suggestedInsertionIds
1819 1820 1821 |
# File 'lib/google/apis/docs_v1/classes.rb', line 1819 def suggested_insertion_ids @suggested_insertion_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1826 1827 1828 1829 |
# File 'lib/google/apis/docs_v1/classes.rb', line 1826 def update!(**args) @suggested_deletion_ids = args[:suggested_deletion_ids] if args.key?(:suggested_deletion_ids) @suggested_insertion_ids = args[:suggested_insertion_ids] if args.key?(:suggested_insertion_ids) end |