Class: Google::Apis::LanguageV2::XpsSpeechModelSpecSubModelSpec

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/language_v2/classes.rb,
lib/google/apis/language_v2/representations.rb,
lib/google/apis/language_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsSpeechModelSpecSubModelSpec

Returns a new instance of XpsSpeechModelSpecSubModelSpec.



3277
3278
3279
# File 'lib/google/apis/language_v2/classes.rb', line 3277

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#biasing_model_typeString

Type of the biasing model. Corresponds to the JSON property biasingModelType

Returns:

  • (String)


3259
3260
3261
# File 'lib/google/apis/language_v2/classes.rb', line 3259

def biasing_model_type
  @biasing_model_type
end

#client_idString

In S3, Recognition ClientContextId.client_id Corresponds to the JSON property clientId

Returns:

  • (String)


3264
3265
3266
# File 'lib/google/apis/language_v2/classes.rb', line 3264

def client_id
  @client_id
end

#context_idString

In S3, Recognition ClientContextId.context_id Corresponds to the JSON property contextId

Returns:

  • (String)


3269
3270
3271
# File 'lib/google/apis/language_v2/classes.rb', line 3269

def context_id
  @context_id
end

#is_enhanced_modelBoolean Also known as: is_enhanced_model?

If true then it means we have an enhanced version of the biasing models. Corresponds to the JSON property isEnhancedModel

Returns:

  • (Boolean)


3274
3275
3276
# File 'lib/google/apis/language_v2/classes.rb', line 3274

def is_enhanced_model
  @is_enhanced_model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3282
3283
3284
3285
3286
3287
# File 'lib/google/apis/language_v2/classes.rb', line 3282

def update!(**args)
  @biasing_model_type = args[:biasing_model_type] if args.key?(:biasing_model_type)
  @client_id = args[:client_id] if args.key?(:client_id)
  @context_id = args[:context_id] if args.key?(:context_id)
  @is_enhanced_model = args[:is_enhanced_model] if args.key?(:is_enhanced_model)
end