Class: Google::Apis::SpeechV1p1beta1::SpeechAdaptation
- Inherits:
-
Object
- Object
- Google::Apis::SpeechV1p1beta1::SpeechAdaptation
- 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
Speech adaptation configuration.
Instance Attribute Summary collapse
-
#abnf_grammar ⇒ Google::Apis::SpeechV1p1beta1::AbnfGrammar
Augmented Backus-Naur form (ABNF) is a standardized grammar notation comprised by a set of derivation rules.
-
#custom_classes ⇒ Array<Google::Apis::SpeechV1p1beta1::CustomClass>
A collection of custom classes.
-
#phrase_set_references ⇒ Array<String>
A collection of phrase set resource names to use.
-
#phrase_sets ⇒ Array<Google::Apis::SpeechV1p1beta1::PhraseSet>
A collection of phrase sets.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SpeechAdaptation
constructor
A new instance of SpeechAdaptation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SpeechAdaptation
Returns a new instance of SpeechAdaptation.
1231 1232 1233 |
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 1231 def initialize(**args) update!(**args) end |
Instance Attribute Details
#abnf_grammar ⇒ Google::Apis::SpeechV1p1beta1::AbnfGrammar
Augmented Backus-Naur form (ABNF) is a standardized grammar notation comprised
by a set of derivation rules. See specifications: https://www.w3.org/TR/speech-
grammar
Corresponds to the JSON property abnfGrammar
1209 1210 1211 |
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 1209 def abnf_grammar @abnf_grammar end |
#custom_classes ⇒ Array<Google::Apis::SpeechV1p1beta1::CustomClass>
A collection of custom classes. To specify the classes inline, leave the class'
name
blank and fill in the rest of its fields, giving it a unique
custom_class_id
. Refer to the inline defined class in phrase hints by its
custom_class_id
.
Corresponds to the JSON property customClasses
1217 1218 1219 |
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 1217 def custom_classes @custom_classes end |
#phrase_set_references ⇒ Array<String>
A collection of phrase set resource names to use.
Corresponds to the JSON property phraseSetReferences
1222 1223 1224 |
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 1222 def phrase_set_references @phrase_set_references end |
#phrase_sets ⇒ Array<Google::Apis::SpeechV1p1beta1::PhraseSet>
A collection of phrase sets. To specify the hints inline, leave the phrase set'
s name
blank and fill in the rest of its fields. Any phrase set can use any
custom class.
Corresponds to the JSON property phraseSets
1229 1230 1231 |
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 1229 def phrase_sets @phrase_sets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1236 1237 1238 1239 1240 1241 |
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 1236 def update!(**args) @abnf_grammar = args[:abnf_grammar] if args.key?(:abnf_grammar) @custom_classes = args[:custom_classes] if args.key?(:custom_classes) @phrase_set_references = args[:phrase_set_references] if args.key?(:phrase_set_references) @phrase_sets = args[:phrase_sets] if args.key?(:phrase_sets) end |