Class: Google::Apis::DocsV1::Equation
- Inherits:
-
Object
- Object
- Google::Apis::DocsV1::Equation
- 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 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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Equation
Returns a new instance of Equation
1404 1405 1406 |
# File 'generated/google/apis/docs_v1/classes.rb', line 1404 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
1395 1396 1397 |
# File 'generated/google/apis/docs_v1/classes.rb', line 1395 def suggested_deletion_ids @suggested_deletion_ids end |
#suggested_insertion_ids ⇒ Array<String>
The suggested insertion IDs. A Equation
may have multiple insertion IDs if it is a nested suggested change. If
empty, then this is not a suggested insertion.
Corresponds to the JSON property suggestedInsertionIds
1402 1403 1404 |
# File 'generated/google/apis/docs_v1/classes.rb', line 1402 def suggested_insertion_ids @suggested_insertion_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1409 1410 1411 1412 |
# File 'generated/google/apis/docs_v1/classes.rb', line 1409 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 |