Class: Google::Apis::DriveV2::File::IndexableText
- Inherits:
-
Object
- Object
- Google::Apis::DriveV2::File::IndexableText
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/drive_v2/classes.rb,
generated/google/apis/drive_v2/representations.rb,
generated/google/apis/drive_v2/representations.rb
Overview
Indexable text attributes for the file (can only be written)
Instance Attribute Summary collapse
-
#text ⇒ String
The text to be indexed for this file.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IndexableText
constructor
A new instance of IndexableText.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ IndexableText
Returns a new instance of IndexableText
2148 2149 2150 |
# File 'generated/google/apis/drive_v2/classes.rb', line 2148 def initialize(**args) update!(**args) end |
Instance Attribute Details
#text ⇒ String
The text to be indexed for this file.
Corresponds to the JSON property text
2146 2147 2148 |
# File 'generated/google/apis/drive_v2/classes.rb', line 2146 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2153 2154 2155 |
# File 'generated/google/apis/drive_v2/classes.rb', line 2153 def update!(**args) @text = args[:text] if args.key?(:text) end |