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.
Constructor Details
#initialize(**args) ⇒ Equation
Returns a new instance of Equation.
1598 1599 1600 |
# File 'generated/google/apis/docs_v1/classes.rb', line 1598 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
1590 1591 1592 |
# File 'generated/google/apis/docs_v1/classes.rb', line 1590 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
1596 1597 1598 |
# File 'generated/google/apis/docs_v1/classes.rb', line 1596 def suggested_insertion_ids @suggested_insertion_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1603 1604 1605 1606 |
# File 'generated/google/apis/docs_v1/classes.rb', line 1603 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 |