Show / Hide Table of Contents

Class RealtimeModelDetails

Details of the ASR model used by the realtime speech service.

Inheritance
object
RealtimeModelDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AispeechService.Models
Assembly: OCI.DotNetSDK.Aispeech.dll
Syntax
public class RealtimeModelDetails

Properties

Domain

Declaration
[JsonProperty(PropertyName = "domain")]
[JsonConverter(typeof(StringEnumConverter))]
public RealtimeModelDetails.DomainEnum? Domain { get; set; }
Property Value
Type Description
RealtimeModelDetails.DomainEnum?

Model Domain.

LanguageCode

Declaration
[JsonProperty(PropertyName = "languageCode")]
public string LanguageCode { get; set; }
Property Value
Type Description
string

Locale value as per given in [https://datatracker.ietf.org/doc/html/rfc5646].

  • en-US: English - United States
  • es-ES: Spanish - Spain
  • pt-BR: Portuguese - Brazil
  • en-GB: English - Great Britain
  • en-AU: English - Australia
  • en-IN: English - India
  • hi-IN: Hindi - India
  • fr-FR: French - France
  • de-DE: German - Germany
  • it-IT: Italian - Italy
In this article
Back to top