Click or drag to resize

TextToSpeechUpdateCustomization Method

Updates information for the custom voice model with the specified `customization_id`. You can update the metadata such as the name and description of the voice model. You can also update the words in the model and their translations. A custom model can contain no more than 20,000 entries. Only the owner of a custom voice model can use this method to update the model. 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 UpdateCustomization(
	TextToSpeechSuccessCallback<bool> successCallback,
	TextToSpeechFailCallback failCallback,
	string customizationID,
	CustomVoiceUpdate customVoiceUpdate,
	Dictionary<string, Object> customData = null
)

Parameters

successCallback
Type: IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1TextToSpeechSuccessCallbackBoolean
The success callback.
failCallback
Type: IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1TextToSpeechFailCallback
The fail callback.
customizationID
Type: SystemString
The identifier of the custom voice model to be updated.
customVoiceUpdate
Type: IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1CustomVoiceUpdate
Custom voice model update data.
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.UpdateCustomization(IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1.TextToSpeech.SuccessCallback{System.Boolean},IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1.TextToSpeech.FailCallback,System.String,IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1.CustomVoiceUpdate,System.Collections.Generic.Dictionary{System.String,System.Object})"]

See Also