class Google::Apis::SpeechV1p1beta1::Entry
A single replacement configuration.
Attributes
case_sensitive[RW]
Whether the search is case sensitive. Corresponds to the JSON property `caseSensitive` @return [Boolean]
case_sensitive?[RW]
Whether the search is case sensitive. Corresponds to the JSON property `caseSensitive` @return [Boolean]
replace[RW]
What to replace with. Max length is 100 characters. Corresponds to the JSON property `replace` @return [String]
search[RW]
What to replace. Max length is 100 characters. Corresponds to the JSON property `search` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/speech_v1p1beta1/classes.rb, line 172 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/speech_v1p1beta1/classes.rb, line 177 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