TextToSpeechDeleteCustomizationWord Method |
Deletes a single word from the custom voice model with the specified customization_id. Only the owner of a custom voice model can use this method to delete a word from 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 public bool DeleteCustomizationWord(
TextToSpeechSuccessCallback<bool> successCallback,
TextToSpeechFailCallback failCallback,
string customizationID,
string word,
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 voice model's identifier. - word
- Type: SystemString
The word to be deleted. - 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.DeleteCustomizationWord(IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1.TextToSpeech.SuccessCallback{System.Boolean},IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1.TextToSpeech.FailCallback,System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})"]
See Also