Click or drag to resize

TextToSpeechCreateCustomization Method

Creates a new empty custom voice model that is owned by the requesting user. Note: This method is currently a beta release that supports US English only.

Namespace:  IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1
Assembly:  unity-documentation (in unity-documentation.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool CreateCustomization(
	TextToSpeechSuccessCallback<CustomizationID> successCallback,
	TextToSpeechFailCallback failCallback,
	string name,
	string language = null,
	string description = null,
	Dictionary<string, Object> customData = null
)

Parameters

successCallback
Type: IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1TextToSpeechSuccessCallbackCustomizationID
The success callback.
failCallback
Type: IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1TextToSpeechFailCallback
The fail callback.
name
Type: SystemString
Name of the new custom voice model.
language (Optional)
Type: SystemString
Language of the new custom voice model. Omit the parameter to use the default language, en-US. = ['de-DE', 'en-US', 'en-GB', 'es-ES', 'es-US', 'fr-FR', 'it-IT', 'ja-JP', 'pt-BR'].
description (Optional)
Type: SystemString
Description of the new custom voice model.
customData (Optional)
Type: System.Collections.GenericDictionaryString, Object
Optional custom data.

Return Value

Type: Boolean

[Missing <returns> documentation for "M:IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1.TextToSpeech.CreateCustomization(IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1.TextToSpeech.SuccessCallback{IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1.CustomizationID},IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1.TextToSpeech.FailCallback,System.String,System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})"]

See Also