Class: Google::Apis::SpeechV1p1beta1::Entry
- Inherits:
-
Object
- Object
- Google::Apis::SpeechV1p1beta1::Entry
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/speech_v1p1beta1/classes.rb,
lib/google/apis/speech_v1p1beta1/representations.rb,
lib/google/apis/speech_v1p1beta1/representations.rb
Overview
A single replacement configuration.
Instance Attribute Summary collapse
-
#case_sensitive ⇒ Boolean
(also: #case_sensitive?)
Whether the search is case sensitive.
-
#replace ⇒ String
What to replace with.
-
#search ⇒ String
What to replace.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Entry
constructor
A new instance of Entry.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Entry
Returns a new instance of Entry.
271 272 273 |
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 271 def initialize(**args) update!(**args) end |
Instance Attribute Details
#case_sensitive ⇒ Boolean Also known as: case_sensitive?
Whether the search is case sensitive.
Corresponds to the JSON property caseSensitive
258 259 260 |
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 258 def case_sensitive @case_sensitive end |
#replace ⇒ String
What to replace with. Max length is 100 characters.
Corresponds to the JSON property replace
264 265 266 |
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 264 def replace @replace end |
#search ⇒ String
What to replace. Max length is 100 characters.
Corresponds to the JSON property search
269 270 271 |
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 269 def search @search end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
276 277 278 279 280 |
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 276 def update!(**args) @case_sensitive = args[:case_sensitive] if args.key?(:case_sensitive) @replace = args[:replace] if args.key?(:replace) @search = args[:search] if args.key?(:search) end |