Show / Hide Table of Contents

Class CustomizationModelDetails

Customization details.

Inheritance
object
CustomizationModelDetails
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 CustomizationModelDetails

Properties

Domain

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

Customization 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